diff options
Diffstat (limited to 'kubernetes/clamp/charts/mariadb')
-rw-r--r-- | kubernetes/clamp/charts/mariadb/templates/deployment.yaml | 5 | ||||
-rw-r--r-- | kubernetes/clamp/charts/mariadb/values.yaml | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/kubernetes/clamp/charts/mariadb/templates/deployment.yaml b/kubernetes/clamp/charts/mariadb/templates/deployment.yaml index b6af4e3d0b..7d6e162813 100644 --- a/kubernetes/clamp/charts/mariadb/templates/deployment.yaml +++ b/kubernetes/clamp/charts/mariadb/templates/deployment.yaml @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "common.fullname" . }} @@ -25,6 +25,9 @@ metadata: heritage: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ include "common.name" . }} template: metadata: labels: diff --git a/kubernetes/clamp/charts/mariadb/values.yaml b/kubernetes/clamp/charts/mariadb/values.yaml index df651dd9ea..2a90e8480c 100644 --- a/kubernetes/clamp/charts/mariadb/values.yaml +++ b/kubernetes/clamp/charts/mariadb/values.yaml @@ -21,7 +21,7 @@ global: # global defaults persistence: {} # application image -repository: nexus3.onap.org:10001 +repository: docker.io image: mariadb:10.3.12 pullPolicy: Always flavor: small |