UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
values.yaml 2.36 KiB
Newer Older
  • Learn to ignore specific revisions
  • still's avatar
    still committed
    # Default values for minio-operator.
    
    Michael Martin's avatar
    Michael Martin committed
    
    
    still's avatar
    still committed
    operator:
    
    Michael Martin's avatar
    Michael Martin committed
      ## Setup environment variables for the Operator
    
    Michael Martin's avatar
    Michael Martin committed
        - name: MINIO_OPERATOR_TLS_ENABLE
          value: "on"
    
        - name: CLUSTER_DOMAIN
          value: "cluster.local"
        - name: WATCHED_NAMESPACE
          value: ""
    
    still's avatar
    still committed
      image:
        repository: registry1.dso.mil/ironbank/opensource/minio/operator
    
    still's avatar
    still committed
        pullPolicy: IfNotPresent
    
    Michael Martin's avatar
    Michael Martin committed
      imagePullSecrets: [ ]
      initcontainers: [ ]
    
    still's avatar
    still committed
      replicaCount: 1
      securityContext:
        runAsUser: 1000
        runAsGroup: 1000
        runAsNonRoot: true
    
        fsGroup: 1000
    
    Michael Martin's avatar
    Michael Martin committed
      nodeSelector: { }
      affinity: { }
      tolerations: [ ]
      topologySpreadConstraints: [ ]
    
    still's avatar
    still committed
      resources:
        requests:
          cpu: 200m
          memory: 256Mi
          ephemeral-storage: 500Mi
    
        limits:
          cpu: 200m
          memory: 256Mi
    
    still's avatar
    still committed
    
    
    Michael Martin's avatar
    Michael Martin committed
    console:
      enabled: false
      image:
    
        repository: registry1.dso.mil/ironbank/opensource/minio/console
        tag: v0.15.5
    
    Michael Martin's avatar
    Michael Martin committed
        pullPolicy: IfNotPresent
      imagePullSecrets: [ ]
      initcontainers: [ ]
      replicaCount: 1
      nodeSelector: { }
      affinity: { }
      tolerations: [ ]
      topologySpreadConstraints: [ ]
      resources: { }
      securityContext:
        runAsUser: 1000
        runAsNonRoot: true
      ingress:
        enabled: false
        ingressClassName: ""
        labels: { }
        annotations: { }
        tls: [ ]
        host: console.local
        path: /
    
    Michael Martin's avatar
    Michael Martin committed
    # Big Bang Added Values    
    
    networkPolicies:
      enabled: false
      controlPlaneCidr: 0.0.0.0/0
      ingressLabels:
        app: istio-ingressgateway
        istio: ingressgateway
    
    istio:
      enabled: false
    
      mtls:
        # STRICT = Allow only mutual TLS traffic
        # PERMISSIVE = Allow both plain text and mutual TLS traffic
        mode: STRICT
    
    Michael Martin's avatar
    Michael Martin committed
    
    openshift: false
    
    still's avatar
    still committed
    
    
    Michael Martin's avatar
    Michael Martin committed
    monitoring:
      enabled: false
      namespace: monitoring
    
    still's avatar
    still committed
    serviceAccount:
      # Specifies whether a service account should be created
      create: true
      # Annotations to add to the service account
      annotations: {}
      # The name of the service account to use.
      # If not set and create is true, a name is generated using the fullname template
      name: ""
    
    still's avatar
    still committed
    
    
    Michael Martin's avatar
    Michael Martin committed
    imagePullSecrets: []
    #nameOverride: ""
    #fullnameOverride: ""
    
    annotations: {}
    
    Michael Martin's avatar
    Michael Martin committed
        
    # Used in templates/bigbang/tenant-patch-job.yaml
    # Needed for operator upgrade.go logic to cleanly upgrade from bb v4.2.3 to v4.4.3
    tenantPatchJob:
      enabled: true
    
    still's avatar
    still committed
      image:
    
    Michael Martin's avatar
    Michael Martin committed
        repository: registry1.dso.mil/ironbank/big-bang/base
        tag: 8.4
        pullSecrets:
    
    
    installCRDs: true