-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add metrics agents #461
add metrics agents #461
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,54 @@ | ||||||||||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||||||||||
kind: HelmRelease | ||||||||||
metadata: | ||||||||||
name: {{ .Release.Name }}-cert-manager-crds | ||||||||||
labels: | ||||||||||
cozystack.io/repository: system | ||||||||||
coztstack.io/target-cluster-name: {{ .Release.Name }} | ||||||||||
Comment on lines
+6
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in target cluster label key. There's a typo in the label key: labels:
cozystack.io/repository: system
- coztstack.io/target-cluster-name: {{ .Release.Name }}
+ cozystack.io/target-cluster-name: {{ .Release.Name }} 📝 Committable suggestion
Suggested change
|
||||||||||
spec: | ||||||||||
interval: 5m | ||||||||||
releaseName: cert-manager-crds | ||||||||||
chart: | ||||||||||
spec: | ||||||||||
chart: cozy-cert-manager-crds | ||||||||||
reconcileStrategy: Revision | ||||||||||
sourceRef: | ||||||||||
kind: HelmRepository | ||||||||||
name: cozystack-system | ||||||||||
namespace: cozy-system | ||||||||||
Comment on lines
+11
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Chart configuration needs attention The verification reveals potential issues:
Action items:
🔗 Analysis chainVerify chart availability in the repository. The chart specification looks correct, but let's ensure the custom chart exists in the repository. Let me gather more specific information about the chart and repository configuration. Let me check one final thing to verify the HelmRepository configuration. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify the existence of the cert-manager CRDs chart in the repository
# Expected: Find references to the chart in Chart.yaml or similar files
# Search for references to the chart name
echo "Searching for chart references..."
rg -l "cozy-cert-manager-crds" --type yaml
# Search for potential chart directory
echo "Searching for chart directory..."
fd -t d "cozy-cert-manager-crds"
Length of output: 1301 Script: #!/bin/bash
# Check HelmRepository configuration and chart references
echo "Checking HelmRepository configuration..."
rg -A 5 'kind: HelmRepository.*cozystack-system' --type yaml
echo -e "\nChecking chart references in bundle configurations..."
rg -A 10 'cozy-cert-manager-crds' packages/core/platform/bundles/
Length of output: 3484 Script: #!/bin/bash
# Check for HelmRepository definition in the system namespace
echo "Checking HelmRepository in cozy-system namespace..."
rg -A 5 'kind: HelmRepository.*name: cozystack-system' --type yaml
echo -e "\nChecking for repository configuration files..."
fd -t f "repository" -e yaml
Length of output: 389 |
||||||||||
kubeConfig: | ||||||||||
secretRef: | ||||||||||
name: {{ .Release.Name }}-kubeconfig | ||||||||||
targetNamespace: cozy-cert-manager-crds | ||||||||||
storageNamespace: cozy-cert-manager-crds | ||||||||||
install: | ||||||||||
createNamespace: true | ||||||||||
remediation: | ||||||||||
retries: -1 | ||||||||||
upgrade: | ||||||||||
remediation: | ||||||||||
retries: -1 | ||||||||||
{{- if .Values.addons.certManager.valuesOverride }} | ||||||||||
valuesFrom: | ||||||||||
- kind: Secret | ||||||||||
name: {{ .Release.Name }}-cert-manager-crds-values-override | ||||||||||
valuesKey: values | ||||||||||
{{- end }} | ||||||||||
|
||||||||||
dependsOn: | ||||||||||
{{- if lookup "helm.toolkit.fluxcd.io/v2" "HelmRelease" .Release.Namespace .Release.Name }} | ||||||||||
- name: {{ .Release.Name }} | ||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||
{{- end }} | ||||||||||
- name: {{ .Release.Name }}-cilium | ||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||
{{- if .Values.addons.certManager.valuesOverride }} | ||||||||||
--- | ||||||||||
apiVersion: v1 | ||||||||||
kind: Secret | ||||||||||
metadata: | ||||||||||
name: {{ .Release.Name }}-cert-manager-crds-values-override | ||||||||||
stringData: | ||||||||||
values: | | ||||||||||
{{- toYaml .Values.addons.certManager.valuesOverride | nindent 4 }} | ||||||||||
{{- end }} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,105 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- $myNS := lookup "v1" "Namespace" "" .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- $targetTenant := index $myNS.metadata.annotations "namespace.cozystack.io/monitoring" }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- if .Values.addons.monitoringAgents.enabled }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add error handling for missing namespace annotation The code assumes the namespace annotation Consider adding a default value or validation: -{{- $targetTenant := index $myNS.metadata.annotations "namespace.cozystack.io/monitoring" }}
+{{- $targetTenant := default "default" (index $myNS.metadata.annotations "namespace.cozystack.io/monitoring" | default "") }} 📝 Committable suggestion
Suggested change
🧰 Tools🪛 yamllint[error] 1-1: syntax error: expected the node content, but found '-' (syntax)
Comment on lines
+1
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add nil checks for namespace lookup and annotation access The current implementation might fail if:
Add nil checks with this diff: {{- $myNS := lookup "v1" "Namespace" "" .Release.Namespace }}
+{{- if $myNS }}
+{{- if hasKey $myNS.metadata.annotations "namespace.cozystack.io/monitoring" }}
{{- $targetTenant := index $myNS.metadata.annotations "namespace.cozystack.io/monitoring" }}
{{- if .Values.addons.monitoringAgents.enabled }}
+{{- else }}
+{{- fail "Missing required annotation: namespace.cozystack.io/monitoring" }}
+{{- end }}
+{{- else }}
+{{- fail "Namespace not found" }}
+{{- end }} 📝 Committable suggestion
Suggested change
🧰 Tools🪛 yamllint[error] 1-1: syntax error: expected the node content, but found '-' (syntax) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: HelmRelease | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
metadata: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: {{ .Release.Name }}-monitoring-agents | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
labels: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
cozystack.io/repository: system | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
coztstack.io/target-cluster-name: {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+8
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in label key There's a typo in the label key: - coztstack.io/target-cluster-name: {{ .Release.Name }}
+ cozystack.io/target-cluster-name: {{ .Release.Name }} 📝 Committable suggestion
Suggested change
Comment on lines
+8
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in label key There's a typo in the label key: labels:
cozystack.io/repository: system
- coztstack.io/target-cluster-name: {{ .Release.Name }}
+ cozystack.io/target-cluster-name: {{ .Release.Name }} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
interval: 5m | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
releaseName: cozy-monitoring-agents | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
chart: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
chart: cozy-monitoring-agents | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
reconcileStrategy: Revision | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
sourceRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: HelmRepository | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: cozystack-system | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: cozy-system | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
kubeConfig: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
secretRef: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: {{ .Release.Name }}-kubeconfig | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
targetNamespace: cozy-monitoring-agents | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
storageNamespace: cozy-monitoring-agents | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
install: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
createNamespace: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeout: "300s" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
remediation: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
retries: -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
upgrade: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
remediation: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
retries: -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
dependsOn: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- if lookup "helm.toolkit.fluxcd.io/v2" "HelmRelease" .Release.Namespace .Release.Name }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- end }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }}-cilium | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }}-cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
values: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
vmagent: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
externalLabels: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
cluster: {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
tenant: {{ $targetTenant }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
remoteWrite: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
url: http://vminsert-shortterm.{{ $targetTenant }}.svc:8480/insert/0/prometheus | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
fluent-bit: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
readinessProbe: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
httpGet: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
path: / | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
daemonSetVolumes: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: varlog | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
hostPath: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
path: /var/log | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: varlibdockercontainers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
hostPath: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
path: /var/lib/docker/containers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
daemonSetVolumeMounts: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: varlog | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
mountPath: /var/log | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: varlibdockercontainers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
mountPath: /var/lib/docker/containers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
readOnly: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+56
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Make container runtime paths configurable The host paths for logs are hardcoded to Docker-specific locations. This might not work with other container runtimes (containerd, CRI-O). Consider making these paths configurable through values: daemonSetVolumes:
- name: varlog
hostPath:
- path: /var/log
+ path: {{ .Values.fluent_bit.log_path | default "/var/log" }}
- name: varlibdockercontainers
hostPath:
- path: /var/lib/docker/containers
+ path: {{ .Values.fluent_bit.container_log_path | default "/var/lib/docker/containers" }} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
config: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
outputs: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
[OUTPUT] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name http | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match kube.* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Host vlogs-generic.{{ $targetTenant }}.svc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
port 9428 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
compress gzip | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
uri /insert/jsonline?_stream_fields=stream,kubernetes_pod_name,kubernetes_container_name,kubernetes_namespace_name&_msg_field=log&_time_field=date | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
format json_lines | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
json_date_format iso8601 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
header AccountID 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
header ProjectID 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
filters: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+70
to
+82
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Enhance security and reliability of HTTP output configuration The current HTTP output configuration:
Consider adding:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
[FILTER] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name kubernetes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match kube.* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Merge_Log On | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Keep_Log On | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
K8S-Logging.Parser On | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
K8S-Logging.Exclude On | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
[FILTER] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name nest | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match * | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wildcard pod_name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Operation lift | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nested_under kubernetes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Add_prefix kubernetes_ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
[FILTER] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name modify | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match * | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Add tenant {{ $targetTenant }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
[FILTER] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name modify | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match * | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Add cluster {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{- end }} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,41 @@ | ||||||||||||||||||||||||||||||||||||||
{{- if .Values.addons.monitoringAgents.enabled }} | ||||||||||||||||||||||||||||||||||||||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||||||||||||||||||||||||||||||||||||||
kind: HelmRelease | ||||||||||||||||||||||||||||||||||||||
metadata: | ||||||||||||||||||||||||||||||||||||||
name: {{ .Release.Name }}-cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||
labels: | ||||||||||||||||||||||||||||||||||||||
cozystack.io/repository: system | ||||||||||||||||||||||||||||||||||||||
coztstack.io/target-cluster-name: {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+1
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in cluster label name. There's a typo in the target cluster label key: - coztstack.io/target-cluster-name: {{ .Release.Name }}
+ cozystack.io/target-cluster-name: {{ .Release.Name }} 📝 Committable suggestion
Suggested change
🧰 Tools🪛 yamllint[error] 1-1: syntax error: expected the node content, but found '-' (syntax) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in label key. There's a typo in the label key: - coztstack.io/target-cluster-name: {{ .Release.Name }}
+ cozystack.io/target-cluster-name: {{ .Release.Name }} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||
interval: 5m | ||||||||||||||||||||||||||||||||||||||
releaseName: cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||
chart: | ||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||
chart: cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||
reconcileStrategy: Revision | ||||||||||||||||||||||||||||||||||||||
sourceRef: | ||||||||||||||||||||||||||||||||||||||
kind: HelmRepository | ||||||||||||||||||||||||||||||||||||||
name: cozystack-system | ||||||||||||||||||||||||||||||||||||||
namespace: cozy-system | ||||||||||||||||||||||||||||||||||||||
kubeConfig: | ||||||||||||||||||||||||||||||||||||||
secretRef: | ||||||||||||||||||||||||||||||||||||||
name: {{ .Release.Name }}-kubeconfig | ||||||||||||||||||||||||||||||||||||||
targetNamespace: cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||
storageNamespace: cozy-victoria-metrics-operator | ||||||||||||||||||||||||||||||||||||||
install: | ||||||||||||||||||||||||||||||||||||||
createNamespace: true | ||||||||||||||||||||||||||||||||||||||
remediation: | ||||||||||||||||||||||||||||||||||||||
retries: -1 | ||||||||||||||||||||||||||||||||||||||
upgrade: | ||||||||||||||||||||||||||||||||||||||
remediation: | ||||||||||||||||||||||||||||||||||||||
retries: -1 | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+25
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Consider adding a failure threshold for retries. The current configuration sets unlimited retries ( install:
createNamespace: true
remediation:
- retries: -1
+ retries: 5
+ failureThreshold: 300
upgrade:
remediation:
- retries: -1
+ retries: 5
+ failureThreshold: 300 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||
dependsOn: | ||||||||||||||||||||||||||||||||||||||
{{- if lookup "helm.toolkit.fluxcd.io/v2" "HelmRelease" .Release.Namespace .Release.Name }} | ||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }} | ||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||
{{- end }} | ||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }}-cilium | ||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||
- name: {{ .Release.Name }}-cert-manager-crds | ||||||||||||||||||||||||||||||||||||||
namespace: {{ .Release.Namespace }} | ||||||||||||||||||||||||||||||||||||||
{{- end }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
cozystack: | ||
image: ghcr.io/aenix-io/cozystack/cozystack:v0.17.1@sha256:7c83bf1a31096cecc78da2a10b0bb4e2c1723bdcbfd79cd523516d737fa1f952 | ||
image: kklinch0/cozystack:12.3.9@sha256:952e757f12e49e064763e6e6d3814b69bf0ea383abe418c18cddcc727acf7f58 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typo in label key.
There's a typo in the label key:
coztstack.io
should becozystack.io
.📝 Committable suggestion