Skip to content

Commit

Permalink
ff9b2e526699b51763fb36deccf270a443b53721: update public repo contents
Browse files Browse the repository at this point in the history
  • Loading branch information
chatton committed Feb 3, 2021
1 parent 96c948b commit 1a9ddb2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion helm_chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mongodb-enterprise-operator
description: MongoDB Kubernetes Enterprise Operator
version: 1.9.1
version: 1.9.2
kubeVersion: '>=1.13-0'
keywords:
- mongodb
Expand Down
12 changes: 6 additions & 6 deletions helm_chart/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
{{- end }}
containers:
- name: {{ .Values.operator.deployment_name }}
image: {{ .Values.registry.operator }}/{{ .Values.operator.name }}:{{ .Values.operator.version }}
image: {{ .Values.registry.operator }}/{{ .Values.operator.name }}:{{ .Values.operator.version }}{{ .Values.build }}
imagePullPolicy: {{ .Values.registry.pullPolicy }}
{{- if .Values.operator.watchedResources }}
args:
Expand Down Expand Up @@ -76,25 +76,25 @@ spec:
- name: INIT_DATABASE_IMAGE_REPOSITORY
value: {{ .Values.registry.initDatabase }}/{{ .Values.initDatabase.name }}
- name: INIT_DATABASE_VERSION
value: {{ .Values.initDatabase.version }}
value: {{ .Values.initDatabase.version }}{{ .Values.build }}
- name: DATABASE_VERSION
value: {{ .Values.database.version }}
value: {{ .Values.database.version }}{{ .Values.build }}
# Ops Manager
- name: OPS_MANAGER_IMAGE_REPOSITORY
value: {{ .Values.registry.opsManager }}/{{ .Values.opsManager.name }}
- name: INIT_OPS_MANAGER_IMAGE_REPOSITORY
value: {{ .Values.registry.initOpsManager }}/{{ .Values.initOpsManager.name }}
- name: INIT_OPS_MANAGER_VERSION
value: {{ .Values.initOpsManager.version }}
value: {{ .Values.initOpsManager.version }}{{ .Values.build }}
# AppDB
- name: APPDB_IMAGE_REPOSITORY
value: {{ .Values.registry.appDb }}/{{ .Values.appDb.name }}
- name: APPDB_AGENT_VERSION
value: {{ .Values.appDb.version }}
value: {{ .Values.appDb.version }}{{ .Values.build }}
- name: INIT_APPDB_IMAGE_REPOSITORY
value: {{ .Values.registry.initAppDb }}/{{ .Values.initAppDb.name }}
- name: INIT_APPDB_VERSION
value: {{ .Values.initAppDb.version }}
value: {{ .Values.initAppDb.version }}{{ .Values.build }}
- name: OPS_MANAGER_IMAGE_PULL_POLICY
value: {{ .Values.registry.pullPolicy }}
{{- if .Values.registry.imagePullSecrets }}
Expand Down
2 changes: 1 addition & 1 deletion helm_chart/values-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ operator:
deployment_name: mongodb-enterprise-operator

# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
version: 1.9.1
version: 1.9.2

# The Custom Resources that will be watched by the Operator. Needs to be changed if only some of the CRDs are installed
watchedResources:
Expand Down
2 changes: 1 addition & 1 deletion helm_chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ operator:
deployment_name: mongodb-enterprise-operator

# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
version: 1.9.1
version: 1.9.2

# The Custom Resources that will be watched by the Operator. Needs to be changed if only some of the CRDs are installed
watchedResources:
Expand Down
2 changes: 1 addition & 1 deletion mongodb-enterprise-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ spec:
serviceAccountName: enterprise-operator
containers:
- name: mongodb-enterprise-operator
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.9.1
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.9.2
imagePullPolicy: Always
args:
- "-watch-resource=mongodb"
Expand Down
2 changes: 1 addition & 1 deletion mongodb-enterprise.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ spec:
runAsUser: 2000
containers:
- name: mongodb-enterprise-operator
image: quay.io/mongodb/mongodb-enterprise-operator:1.9.1
image: quay.io/mongodb/mongodb-enterprise-operator:1.9.2
imagePullPolicy: Always
args:
- "-watch-resource=mongodb"
Expand Down

0 comments on commit 1a9ddb2

Please sign in to comment.