This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-deploy-kube.git
The following commit(s) were added to refs/heads/master by this push:
new 9dbf566 Prevent etcd from running when scheduler disabled (#754)
9dbf566 is described below
commit 9dbf566348a7132846bb6364298df589579ebcf4
Author: Erika Hunhoff <[email protected]>
AuthorDate: Thu Oct 20 13:13:40 2022 -0600
Prevent etcd from running when scheduler disabled (#754)
* Restrict etcd from running when scheduler disable
* Update openwhisk commit
---
helm/openwhisk/templates/etcd-pod.yaml | 4 ++--
helm/openwhisk/values.yaml | 16 ++++++++--------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/helm/openwhisk/templates/etcd-pod.yaml
b/helm/openwhisk/templates/etcd-pod.yaml
index dea4552..9cf8381 100644
--- a/helm/openwhisk/templates/etcd-pod.yaml
+++ b/helm/openwhisk/templates/etcd-pod.yaml
@@ -15,7 +15,7 @@
# limitations under the License.
#
-{{ if not .Values.etcd.external }}
+{{- if and (.Values.scheduler.enabled) (not .Values.etcd.external) }}
apiVersion: apps/v1
kind: Deployment
metadata:
@@ -111,4 +111,4 @@ spec:
ports:
- name: etcd
containerPort: {{ .Values.etcd.port }}
-{{ end }}
+{{- end }}
diff --git a/helm/openwhisk/values.yaml b/helm/openwhisk/values.yaml
index d6c19da..b923da1 100644
--- a/helm/openwhisk/values.yaml
+++ b/helm/openwhisk/values.yaml
@@ -139,9 +139,9 @@ whisk:
includeSystemTests: false
versions:
openwhisk:
- buildDate: "2022-09-13-02:40:10Z"
- buildNo: "20220912"
- gitTag: "a1639f0e4d7270c9a230190ac26acb61413b6bbb"
+ buildDate: "2022-10-14-13:44:50Z"
+ buildNo: "20221014"
+ gitTag: "ef725a653ab112391f79c274d8e3dcfb915d59a3"
openwhiskCli:
tag: "1.1.0"
openwhiskCatalog:
@@ -162,7 +162,7 @@ k8s:
# Images used to run auxillary tasks/jobs
utility:
imageName: "openwhisk/ow-utils"
- imageTag: "a1639f0"
+ imageTag: "ef725a6"
imagePullPolicy: "IfNotPresent"
# Docker registry
@@ -260,7 +260,7 @@ nginx:
# Controller configurations
controller:
imageName: "openwhisk/controller"
- imageTag: "a1639f0"
+ imageTag: "ef725a6"
imagePullPolicy: "IfNotPresent"
replicaCount: 1
restartPolicy: "Always"
@@ -274,7 +274,7 @@ controller:
scheduler:
enabled: false
imageName: "openwhisk/scheduler"
- imageTag: "a1639f0"
+ imageTag: "ef725a6"
imagePullPolicy: "IfNotPresent"
replicaCount: 1
restartPolicy: "Always"
@@ -331,7 +331,7 @@ etcd:
# Invoker configurations
invoker:
imageName: "openwhisk/invoker"
- imageTag: "a1639f0"
+ imageTag: "ef725a6"
imagePullPolicy: "IfNotPresent"
restartPolicy: "Always"
runtimeDeleteTimeout: "30 seconds"
@@ -386,7 +386,7 @@ redis:
# User-events configuration
user_events:
imageName: "openwhisk/user-events"
- imageTag: "a1639f0"
+ imageTag: "ef725a6"
imagePullPolicy: "IfNotPresent"
replicaCount: 1
restartPolicy: "Always"