Commit 2634fa02 authored by Prout, Ryan's avatar Prout, Ryan
Browse files

change app name and add variable

parent f20c5ef6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@ apiVersion: apps/v1
kind: Deployment
metadata:
  # This name uniquely identifies the Deployment
  name: minio-standalone
  name: {{ .Values.minio.name }}
spec:
  selector:
    matchLabels:
      app: minio-standalone # has to match .spec.template.metadata.labels
      app: {{ .Values.minio.name }} # has to match .spec.template.metadata.labels
  strategy:
    # Specifies the strategy used to replace old Pods by new ones
    # Refer: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
@@ -15,7 +15,7 @@ spec:
    metadata:
      labels:
        # This label is used as a selector in Service definition
        app: minio-standalone
        app: {{ .Values.minio.name }}
    spec:
      # Volumes used by this deployment
      volumes:
+3 −1
Original line number Diff line number Diff line
@@ -9,5 +9,7 @@ minio:
    limits:
      cpu: 2
      memory: 1Gi
  # Change this to reflect your namespace, this must be unique: <your_namespace>-minio-standalone.apps.marble.ccs.ornl.gov
  # Change this to reflect <your_uid>, this must be unique: <your_uid>-minio-standalone.apps.marble.ccs.ornl.gov
  host: rprout-minio-standalone.apps.marble.ccs.ornl.gov
  # Uniquely define the deployment name as well
  name: rprout-minio-standalone