Skip to content

Commit 779056b

Browse files
committed
revert cue issue changes
1 parent 7c3e6c0 commit 779056b

File tree

32 files changed

+33
-33
lines changed

32 files changed

+33
-33
lines changed

k8s/amour/cilium/daemon_set_list.cue

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

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

k8s/amour/cilium/deployment_list.cue

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

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

k8s/amour/dcgm_exporter/daemon_set_list.cue

Lines changed: 1 addition & 1 deletion
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 = v1.#Probe & {
55+
let probe = {
5656
httpGet: {
5757
path: "/health"
5858
port: "http-metrics"

k8s/amour/emqx/stateful_set_list.cue

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

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

k8s/amour/emqx_exporter/deployment_list.cue

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

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

4747
livenessProbe: probe
4848
readinessProbe: probe

k8s/amour/external_dns/deployment_list.cue

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

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

k8s/amour/frigate/stateful_set_list.cue

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

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

k8s/amour/grafana/stateful_set_list.cue

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

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

k8s/amour/grafana_operator/deployment_list.cue

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

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

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

k8s/amour/home_assistant/stateful_set_list.cue

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

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

0 commit comments

Comments
 (0)