Skip to content

Commit aac74ff

Browse files
fix: Restore local (#31)
* fix: Restore local * Add shortname and category * Build proxy when operator is modified * Update crd
1 parent 800882a commit aac74ff

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/proxy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- "main"
88
paths:
99
- ".github/workflows/proxy.yml"
10+
- "operator/**"
1011
- "proxy/**"
1112

1213
jobs:

bootstrap/crds/main.tf

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ resource "kubernetes_manifest" "customresourcedefinition_cardanonodeports_demete
88
"spec" = {
99
"group" = "demeter.run"
1010
"names" = {
11-
"categories" = []
11+
"categories" = [
12+
"demeter-port",
13+
]
1214
"kind" = "CardanoNodePort"
1315
"plural" = "cardanonodeports"
14-
"shortNames" = []
16+
"shortNames" = [
17+
"cnpts",
18+
]
1519
"singular" = "cardanonodeport"
1620
}
1721
"scope" = "Namespaced"

bootstrap/proxy/deployment.tf

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
locals {
2+
name = "proxy"
23
role = "proxy"
34

45
prometheus_port = 9187

operator/src/controller.rs

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ pub static CARDANO_NODE_PORT_FINALIZER: &str = "cardanonodeports.demeter.run";
1818
kind = "CardanoNodePort",
1919
group = "demeter.run",
2020
version = "v1alpha1",
21+
shortname = "cnpts",
22+
category = "demeter-port",
2123
namespaced
2224
)]
2325
#[kube(status = "CardanoNodePortStatus")]

0 commit comments

Comments
 (0)