Skip to content

Commit 1dd2f77

Browse files
committed
update
1 parent 9abf7b6 commit 1dd2f77

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

charts/platform/templates/argocd-applications/kube-prometheus-stack-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ kubeDns:
2828
kubeEtcd:
2929
enabled: false
3030
kubeScheduler:
31-
enabled: false
31+
enabled: true
3232
kubeProxy:
3333
enabled: false
3434
kubeStateMetrics:

charts/platform/templates/argocd-applications/platform-api-poller-application.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ jobs:
1919
ingressErrorPageMiddleware: {{ printf "%s-%s-error-page@kubernetescrd" .Release.Namespace .Release.Name }}
2020
ingressOAuthAuthorizeUrl: {{ printf "%s/oauth/authorize" (get $platformUrls "ingressAuthUrl") }}
2121
nodeLabels:
22-
job: {{ .Values.jobs.label | default .Values.nodeLabels.job }}
22+
job: {{ .Values.nodeLabels.job }}
2323
nodePool: {{ .Values.nodeLabels.nodePool }}
24-
{{- with .Values.nodeLabels.preemptible }}
25-
preemptible: {{ . }}
26-
{{- end }}
24+
preemptible: {{ .Values.nodeLabels.preemptible }}
2725
{{- if .Values.storages }}
2826
storages:
2927
{{- range .Values.storages }}

charts/platform/templates/argocd-applications/platform-container-runtime-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ affinity:
66
requiredDuringSchedulingIgnoredDuringExecution:
77
nodeSelectorTerms:
88
- matchExpressions:
9-
- key: {{ .Values.nodeLabels.job | default .Values.jobs.label }}
9+
- key: {{ .Values.nodeLabels.job }}
1010
operator: Exists
1111
priorityClassName: {{ include "platform.priorityClassName" . }}
1212
{{- with .Values.sentry }}

charts/platform/templates/argocd-applications/platform-disks-application.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ platform:
1212
clusterName: {{ $clusterName }}
1313
token:
1414
{{- include "platform.token" . | nindent 4 }}
15+
disks:
16+
{{- with .Values.defaultStorageClassName }}
17+
storageClassName: {{ . | quote }}
18+
{{- end }}
1519
{{- with .Values.sentry }}
1620
sentry:
1721
{{- toYaml . | nindent 2 }}

charts/platform/tests/__snapshot__/kube-prometheus-stack-application_test.yaml.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ should match snapshot:
9191
kubeProxy:
9292
enabled: false
9393
kubeScheduler:
94-
enabled: false
94+
enabled: true
9595
kubeStateMetrics:
9696
enabled: true
9797
kubelet:

charts/platform/tests/__snapshot__/platform-disks-application_test.yaml.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ should match snapshot:
1818
chart: platform-disks
1919
helm:
2020
valuesObject:
21+
disks:
22+
storageClassName: standard
2123
ingress:
2224
enabled: true
2325
hosts:

0 commit comments

Comments
 (0)