Skip to content

Commit 5a1a4fe

Browse files
committed
https://github.com/cue-lang/cue/issues/3334
1 parent 4e35d78 commit 5a1a4fe

File tree

33 files changed

+36
-36
lines changed

33 files changed

+36
-36
lines changed

k8s/amour/cilium/daemon_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ import (
213213
mountPath: "/tmp"
214214
}]
215215

216-
let probe = {
216+
let probe = v1.#Probe & {
217217
httpGet: {
218218
host: "127.0.0.1"
219219
path: "/healthz"

k8s/amour/cilium/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import (
7272
readOnly: true
7373
}]
7474

75-
let probe = {
75+
let probe = v1.#Probe & {
7676
httpGet: {
7777
host: "127.0.0.1"
7878
path: "/healthz"

k8s/amour/dcgm_exporter/daemon_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import (
5252
mountPath: "/var/lib/kubelet/pod-resources"
5353
}]
5454

55-
let probe = {
55+
let probe = v1.#Probe & {
5656
httpGet: {
5757
path: "/health"
5858
port: "http-metrics"

k8s/amour/emqx/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import (
5555
mountPath: "/opt/emqx/data"
5656
}]
5757

58-
let probe = {
58+
let probe = v1.#Probe & {
5959
httpGet: {
6060
path: "/status"
6161
port: "http"

k8s/amour/emqx_exporter/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
subPath: "config.yaml"
4343
}]
4444

45-
let probe = {httpGet: port: "http-metrics"}
45+
let probe = v1.#Probe & {httpGet: port: "http-metrics"}
4646

4747
livenessProbe: probe
4848
readinessProbe: probe

k8s/amour/external_dns/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
(v1.#ResourceMemory): "128Mi"
4747
}
4848

49-
let probe = {
49+
let probe = v1.#Probe & {
5050
httpGet: {
5151
path: "/healthz"
5252
port: "http-metrics"

k8s/amour/frigate/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ import (
8585
mountPath: "/media"
8686
}]
8787

88-
let probe = {
88+
let probe = v1.#Probe & {
8989
httpGet: {
9090
path: "/health"
9191
port: "http"

k8s/amour/grafana/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ let plugins = [{
8686
mountPath: "/tmp"
8787
}]
8888

89-
let probe = {
89+
let probe = v1.#Probe & {
9090
httpGet: {
9191
path: "/api/health"
9292
port: "http"

k8s/amour/grafana_operator/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
mountPath: "/tmp/dashboards"
4646
}]
4747

48-
let probe = {httpGet: port: 8081}
48+
let probe = v1.#Probe & {httpGet: port: 8081}
4949

5050
livenessProbe: probe & {
5151
httpGet: path: "/healthz"

k8s/amour/home_assistant/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
mountPath: "/config"
3939
}]
4040

41-
let probe = {
41+
let probe = v1.#Probe & {
4242
httpGet: {
4343
path: "/"
4444
port: "http-metrics"

k8s/amour/karma/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
(v1.#ResourceMemory): "32Mi"
4343
}
4444

45-
let probe = {
45+
let probe = v1.#Probe & {
4646
httpGet: {
4747
path: "/health"
4848
port: "http"

k8s/amour/list.cue

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ _#KindWeight: {
6767
})
6868

6969
_items: [
70-
amour.#ApplySetList.items,
71-
amour.#ClusterSecretStoreList.items,
72-
amour.#CustomResourceDefinitionList.items,
70+
// amour.#ApplySetList.items,
71+
// amour.#ClusterSecretStoreList.items,
72+
// amour.#CustomResourceDefinitionList.items,
7373
backup.#List.items,
7474
cert_manager_csi_driver.#List.items,
7575
cert_manager.#List.items,

k8s/amour/metrics_server/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import (
4949
mountPath: "/tmp"
5050
}]
5151

52-
let probe = {
52+
let probe = v1.#Probe & {
5353
httpGet: {
5454
port: "https"
5555
scheme: v1.#URISchemeHTTPS

k8s/amour/minecraft/cf_atm9/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ import (
135135
mountPath: "/downloads"
136136
}]
137137

138-
let probe = {exec: command: ["mc-health"]}
138+
let probe = v1.#Probe & v1.#Probe & {exec: command: ["mc-health"]}
139139

140140
livenessProbe: probe
141141
readinessProbe: probe

k8s/amour/minecraft/vanilla/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import (
6464
mountPath: "/data"
6565
}]
6666

67-
let probe = {exec: command: ["mc-health"]}
67+
let probe = v1.#Probe & {exec: command: ["mc-health"]}
6868

6969
livenessProbe: probe
7070
readinessProbe: probe

k8s/amour/node_exporter/daemon_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import (
6363
mountPropagation: v1.#MountPropagationHostToContainer
6464
}]
6565

66-
let probe = {
66+
let probe = v1.#Probe & {
6767
httpGet: {
6868
path: "/"
6969
port: "http-metrics"

k8s/amour/node_feature_discovery/master/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import (
5252
readOnly: true
5353
}]
5454

55-
let probe = {
55+
let probe = v1.#Probe & {
5656
grpc: port: 8080
5757
periodSeconds: 10
5858
}

k8s/amour/onepassword_connect/deployment_list.cue

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import (
5858
mountPath: "/home/opuser/.op/data"
5959
}]
6060

61-
let probe = {
61+
let probe = v1.#Probe & {
6262
httpGet: port: "api-http"
6363
initialDelaySeconds: 15
6464
}
@@ -109,7 +109,7 @@ import (
109109
mountPath: "/home/opuser/.op/data"
110110
}]
111111

112-
let probe = {
112+
let probe = v1.#Probe & {
113113
httpGet: port: "sync-http"
114114
initialDelaySeconds: 15
115115
}

k8s/amour/ping_exporter/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import (
4343
subPath: "config.yaml"
4444
}]
4545

46-
let probe = {httpGet: port: "http-metrics"}
46+
let probe = v1.#Probe & {httpGet: port: "http-metrics"}
4747

4848
livenessProbe: probe
4949
readinessProbe: probe

k8s/amour/scrutiny/influxdb/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ import (
8080
mountPath: "/var/lib/influxdb2"
8181
}]
8282

83-
let probe = {
83+
let probe = v1.#Probe & {
8484
httpGet: {
8585
path: "/health"
8686
port: "http"

k8s/amour/scrutiny/web/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import (
5252
mountPath: "/opt/scrutiny/config"
5353
}]
5454

55-
let probe = {
55+
let probe = v1.#Probe & {
5656
httpGet: {
5757
path: "/health"
5858
port: "http"

k8s/amour/smartctl_exporter/daemon_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
mountPath: "/dev"
4343
}]
4444

45-
let probe = {
45+
let probe = v1.#Probe & {
4646
httpGet: {
4747
path: "/"
4848
port: "http-metrics"

k8s/amour/speedtest_exporter/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
(v1.#ResourceMemory): "200Mi"
3333
}
3434

35-
let probe = {httpGet: port: "http-metrics"}
35+
let probe = v1.#Probe & {httpGet: port: "http-metrics"}
3636

3737
livenessProbe: probe
3838
readinessProbe: probe

k8s/amour/trivy_system/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import (
6161
mountPath: "/tmp"
6262
}]
6363

64-
let probe = {
64+
let probe = v1.#Probe & {
6565
httpGet: port: "probes"
6666
initialDelaySeconds: 5
6767
periodSeconds: 10

k8s/amour/victoria_logs/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
mountPath: "/var/lib/victoria-logs"
4141
}]
4242

43-
let probe = {
43+
let probe = v1.#Probe & {
4444
httpGet: {
4545
path: "/"
4646
port: "http"

k8s/unwind/grafana/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import (
6868
mountPath: "/mnt/secrets-store"
6969
}]
7070

71-
let probe = {
71+
let probe = v1.#Probe & {
7272
httpGet: {
7373
path: "/api/health"
7474
port: "http"

k8s/unwind/immich/immich_machine_learning/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ import (
7474
mountPath: "/usr/src/app/.transformers_cache"
7575
}]
7676

77-
let probe = {
77+
let probe = v1.#Probe & {
7878
httpGet: {
7979
path: "/ping"
8080
port: "http"

k8s/unwind/immich/immich_server/deployment_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ import (
113113
mountPath: "/mnt/secrets-store"
114114
}]
115115

116-
let probe = {
116+
let probe = v1.#Probe & {
117117
httpGet: {
118118
path: "/server-info/ping"
119119
port: "http"

k8s/unwind/immich/typesense/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
}
4747
}]
4848

49-
let probe = {
49+
let probe = v1.#Probe & {
5050
httpGet: {
5151
path: "/health"
5252
port: "http"

k8s/unwind/minecraft/cf_atm8/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ import (
120120
mountPath: "/mnt/secrets-store"
121121
}]
122122

123-
let probe = {exec: command: ["mc-health"]}
123+
let probe = v1.#Probe & {exec: command: ["mc-health"]}
124124

125125
livenessProbe: probe
126126
readinessProbe: probe

k8s/unwind/minecraft/ftb_102/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import (
7272
mountPath: "/data"
7373
}]
7474

75-
let probe = {exec: command: ["mc-health"]}
75+
let probe = v1.#Probe & {exec: command: ["mc-health"]}
7676

7777
livenessProbe: probe
7878
readinessProbe: probe

k8s/unwind/minecraft/vanilla/stateful_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import (
6363
mountPath: "/data"
6464
}]
6565

66-
let probe = {exec: command: ["mc-health"]}
66+
let probe = v1.#Probe & {exec: command: ["mc-health"]}
6767

6868
livenessProbe: probe
6969
readinessProbe: probe

k8s/unwind/node_exporter/daemon_set_list.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import (
6363
mountPropagation: v1.#MountPropagationHostToContainer
6464
}]
6565

66-
let probe = {
66+
let probe = v1.#Probe & {
6767
httpGet: {
6868
path: "/"
6969
port: "http-metrics"

0 commit comments

Comments
 (0)