github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/rancher-backup/values.yaml (about)

     1  image:
     2    repository: rancher-backup-restore-operator
     3    tag: v2.1.3
     4    imagePullSecrets: []
     5  
     6  ## Default s3 bucket for storing all backup files created by the backup-restore-operator
     7  s3:
     8    enabled: false
     9    ## credentialSecretName if set, should be the name of the Secret containing AWS credentials.
    10    ## To use IAM Role, don't set this field
    11    credentialSecretName: ""
    12    credentialSecretNamespace: ""
    13    region: ""
    14    bucketName: ""
    15    folder: ""
    16    endpoint: ""
    17    endpointCA: ""
    18    insecureTLSSkipVerify: false
    19  
    20  ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
    21  ## If persistence is enabled, operator will create a PVC with mountPath /var/lib/backups
    22  persistence:
    23    enabled: false
    24  
    25    ## If defined, storageClassName: <storageClass>
    26    ## If set to "-", storageClassName: "", which disables dynamic provisioning
    27    ## If undefined (the default) or set to null, no storageClassName spec is
    28    ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
    29    ##   GKE, AWS & OpenStack).
    30    ## Refer https://kubernetes.io/docs/concepts/storage/persistent-volumes/#class-1
    31    ##
    32    storageClass: "-"
    33  
    34    ## If you want to disable dynamic provisioning by setting storageClass to "-" above,
    35    ## and want to target a particular PV, provide name of the target volume
    36    volumeName: ""
    37  
    38    ## Only certain StorageClasses allow resizing PVs; Refer https://kubernetes.io/blog/2018/07/12/resizing-persistent-volumes-using-kubernetes/
    39    size: 2Gi
    40  
    41  # Add log level flags to backup-restore
    42  debug: false
    43  trace: false
    44  
    45  # http[s] proxy server passed to backup client
    46  # proxy: http://<username>@<password>:<url>:<port>
    47  
    48  # comma separated list of domains or ip addresses that will not use the proxy
    49  noProxy: 127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,.svc,.cluster.local
    50  
    51  global:
    52    cattle:
    53      systemDefaultRegistry: ""
    54    kubectl:
    55      repository: rancher-kubectl
    56      tag: v1.21.9
    57  
    58  ## Node labels for pod assignment
    59  ## Ref: https://kubernetes.io/docs/user-guide/node-selection/
    60  ##
    61  nodeSelector: {}
    62  
    63  ## List of node taints to tolerate (requires Kubernetes >= 1.6)
    64  tolerations: []
    65  
    66  affinity: {}
    67  
    68  serviceAccount:
    69    annotations: {}
    70  
    71  priorityClassName: ""
    72  
    73  # Override imagePullPolicy for image
    74  # options: Always, Never, IfNotPresent
    75  # Defaults to Always
    76  imagePullPolicy: "Always"
    77  
    78  psp:
    79    enabled: false