Skip to content

Commit 36a2e82

Browse files
devzero-workflow-actions[bot]github-actionssandipanpanda
authored
Changes by create-pull-request action (#144)
Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Sandipan Panda <87253083+sandipanpanda@users.noreply.github.com>
1 parent e2c6cb4 commit 36a2e82

5 files changed

Lines changed: 16 additions & 6 deletions

File tree

helm/dakr/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: dakr-operator
33
description: A Helm chart for DevZero DAKR - Kubernetes workload optimization and live migration
44
type: application
5-
version: 0.1.40
6-
appVersion: "0.1.40"
5+
version: 0.1.41
6+
appVersion: "0.1.41"
77
home: https://github.com/devzero-inc/dakr
88
sources:
99
- https://github.com/devzero-inc/dakr

helm/dakr/templates/crds.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@ spec:
412412
- Skipped
413413
- Migrating
414414
- InPlaceScaling
415+
- Rejected
415416
type: string
416417
type: object
417418
type: object
@@ -595,6 +596,7 @@ spec:
595596
- Skipped
596597
- Migrating
597598
- InPlaceScaling
599+
- Rejected
598600
type: string
599601
type: object
600602
type: object
@@ -780,6 +782,7 @@ spec:
780782
- Skipped
781783
- Migrating
782784
- InPlaceScaling
785+
- Rejected
783786
type: string
784787
shrinkPhase:
785788
description: Shrink migration tracking
@@ -1847,7 +1850,7 @@ spec:
18471850
description: LiveMigDeletionProp is set for when UseLiveMigration:true
18481851
and indicates how the snapshotted container should be handled.
18491852
enum:
1850-
- Orphaned
1853+
- Orphan
18511854
- Foreground
18521855
- Background
18531856
type: string
@@ -2178,6 +2181,7 @@ spec:
21782181
- Skipped
21792182
- Migrating
21802183
- InPlaceScaling
2184+
- Rejected
21812185
type: string
21822186
rollingCheckpoint:
21832187
description: |-

helm/dakr/templates/operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ spec:
100100
- name: TOKEN_CONFIGMAP_NAME
101101
value: {{ .Values.operator.tokenFromConfigMap.name | quote }}
102102
- name: TOKEN_CONFIGMAP_NAMESPACE
103-
value: {{ .Values.operator.tokenFromConfigMap.namespace | quote }}
103+
value: {{ .Values.operator.tokenFromConfigMap.namespace | default .Release.Namespace | quote }}
104104
- name: TOKEN_CONFIGMAP_KEY
105105
value: {{ .Values.operator.tokenFromConfigMap.key | quote }}
106106
{{- end }}
107107
{{- if .Values.operator.nameFromConfigMap }}
108108
- name: CLUSTER_NAME_CONFIGMAP_NAME
109109
value: {{ .Values.operator.nameFromConfigMap.name | quote }}
110110
- name: CLUSTER_NAME_CONFIGMAP_NAMESPACE
111-
value: {{ .Values.operator.nameFromConfigMap.namespace | quote }}
111+
value: {{ .Values.operator.nameFromConfigMap.namespace | default .Release.Namespace | quote }}
112112
- name: CLUSTER_NAME_CONFIGMAP_KEY
113113
value: {{ .Values.operator.nameFromConfigMap.key | quote }}
114114
{{- end }}

helm/dakr/templates/webhook.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ webhooks:
5757
name: {{ include "dakr.fullname" . }}-operator
5858
path: /mutate
5959
port: {{ .Values.operator.port | default 9443 }}
60+
{{- if .Values.webhook.caBundle }}
6061
caBundle: {{ .Values.webhook.caBundle }}
62+
{{- end }}
6163
admissionReviewVersions: ["v1"]
6264
sideEffects: None
6365
timeoutSeconds: 2
@@ -130,7 +132,9 @@ webhooks:
130132
name: {{ include "dakr.fullname" . }}-operator
131133
path: /validate
132134
port: {{ .Values.operator.port | default 9443 }}
135+
{{- if .Values.webhook.caBundle }}
133136
caBundle: {{ .Values.webhook.caBundle }}
137+
{{- end }}
134138
admissionReviewVersions: ["v1"]
135139
sideEffects: None
136140
timeoutSeconds: 5
@@ -166,7 +170,9 @@ webhooks:
166170
name: {{ include "dakr.fullname" . }}-operator
167171
path: /validate-eviction
168172
port: {{ .Values.operator.port | default 9443 }}
173+
{{- if .Values.webhook.caBundle }}
169174
caBundle: {{ .Values.webhook.caBundle }}
175+
{{- end }}
170176
admissionReviewVersions: ["v1", "v1beta1"]
171177
sideEffects: None
172178
timeoutSeconds: 10

helm/dakr/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image:
1717
# This sets the pull policy for images.
1818
pullPolicy: Always
1919
# Overrides the image tag whose default is the chart appVersion.
20-
tag: "v0.0.64"
20+
tag: "v0.0.66"
2121

2222
imagePullSecrets: []
2323

0 commit comments

Comments
 (0)