Skip to content

Commit

Permalink
revert cue issue changes
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Jul 30, 2024
1 parent 7c3e6c0 commit 779056b
Show file tree
Hide file tree
Showing 32 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion k8s/amour/cilium/daemon_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ import (
mountPath: "/tmp"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
host: "127.0.0.1"
path: "/healthz"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/cilium/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ import (
readOnly: true
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
host: "127.0.0.1"
path: "/healthz"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/dcgm_exporter/daemon_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (
mountPath: "/var/lib/kubelet/pod-resources"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http-metrics"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/emqx/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import (
mountPath: "/opt/emqx/data"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/status"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/emqx_exporter/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import (
subPath: "config.yaml"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/external_dns/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
(v1.#ResourceMemory): "128Mi"
}

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/healthz"
port: "http-metrics"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/frigate/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ import (
mountPath: "/media"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/grafana/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ let plugins = [{
mountPath: "/tmp"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/api/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/grafana_operator/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import (
mountPath: "/tmp/dashboards"
}]

let probe = v1.#Probe & {httpGet: port: 8081}
let probe = {httpGet: port: 8081}

livenessProbe: probe & {
httpGet: path: "/healthz"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/home_assistant/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
mountPath: "/config"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/"
port: "http-metrics"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/karma/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import (
(v1.#ResourceMemory): "32Mi"
}

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/metrics_server/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import (
mountPath: "/tmp"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
port: "https"
scheme: v1.#URISchemeHTTPS
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/minecraft/cf_atm9/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ import (
mountPath: "/downloads"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/minecraft/vanilla/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import (
mountPath: "/data"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/node_exporter/daemon_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import (
mountPropagation: v1.#MountPropagationHostToContainer
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/"
port: "http-metrics"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (
readOnly: true
}]

let probe = v1.#Probe & {
let probe = {
grpc: port: 8080
periodSeconds: 10
}
Expand Down
4 changes: 2 additions & 2 deletions k8s/amour/onepassword_connect/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import (
mountPath: "/home/opuser/.op/data"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: port: "api-http"
initialDelaySeconds: 15
}
Expand Down Expand Up @@ -109,7 +109,7 @@ import (
mountPath: "/home/opuser/.op/data"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: port: "sync-http"
initialDelaySeconds: 15
}
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/ping_exporter/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
subPath: "config.yaml"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/scrutiny/influxdb/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ import (
mountPath: "/var/lib/influxdb2"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/scrutiny/web/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (
mountPath: "/opt/scrutiny/config"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/smartctl_exporter/daemon_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import (
mountPath: "/dev"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/"
port: "http-metrics"
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/speedtest_exporter/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
(v1.#ResourceMemory): "200Mi"
}

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/trivy_system/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ import (
mountPath: "/tmp"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: port: "probes"
initialDelaySeconds: 5
periodSeconds: 10
Expand Down
2 changes: 1 addition & 1 deletion k8s/amour/victoria_logs/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
mountPath: "/var/lib/victoria-logs"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/grafana/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import (
mountPath: "/mnt/secrets-store"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/api/health"
port: "http"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ import (
mountPath: "/usr/src/app/.transformers_cache"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/ping"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/immich/immich_server/deployment_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ import (
mountPath: "/mnt/secrets-store"
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/server-info/ping"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/immich/typesense/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
}
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/health"
port: "http"
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/minecraft/cf_atm8/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ import (
mountPath: "/mnt/secrets-store"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/minecraft/ftb_102/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ import (
mountPath: "/data"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/minecraft/vanilla/stateful_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import (
mountPath: "/data"
}]

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

livenessProbe: probe
readinessProbe: probe
Expand Down
2 changes: 1 addition & 1 deletion k8s/unwind/node_exporter/daemon_set_list.cue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import (
mountPropagation: v1.#MountPropagationHostToContainer
}]

let probe = v1.#Probe & {
let probe = {
httpGet: {
path: "/"
port: "http-metrics"
Expand Down

0 comments on commit 779056b

Please sign in to comment.