File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
22name : dakr-operator
33description : A Helm chart for DevZero DAKR - Kubernetes workload optimization and live migration
44type : application
5- version : 0.1.40
6- appVersion : " 0.1.40 "
5+ version : 0.1.41
6+ appVersion : " 0.1.41 "
77home : https://github.com/devzero-inc/dakr
88sources :
99 - https://github.com/devzero-inc/dakr
Original file line number Diff line number Diff 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 : |-
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
2222imagePullSecrets : []
2323
You can’t perform that action at this time.
0 commit comments