Commit 2be98bd8 authored by Prout, Ryan's avatar Prout, Ryan
Browse files

remove name variable

parent 2634fa02
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: {{ .Values.minio.name }}
  name: minio-standalone
spec:
  selector:
    matchLabels:
      app: {{ .Values.minio.name }} # has to match .spec.template.metadata.labels
      app: minio-standalone # 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: {{ .Values.minio.name }}
        app: minio-standalone
    spec:
      # Volumes used by this deployment
      volumes:
+0 −2
Original line number Diff line number Diff line
@@ -11,5 +11,3 @@ minio:
      memory: 1Gi
  # 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