github.com/spotahome/redis-operator@v1.2.4/charts/redisoperator/values.yaml (about)

     1  # Default values for redis-operator.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  # Name of the image repository to pull the container image from.
     6  image:
     7    repository: quay.io/spotahome/redis-operator
     8    pullPolicy: IfNotPresent
     9    tag: v1.2.4
    10  
    11  imageCredentials:
    12    create: false
    13    registry: url.private.registry
    14    username: someone
    15    password: somepassword
    16    email: someone@example.com
    17    # Use exists secrets in namespace
    18    existsSecrets:
    19      - registrysecret
    20  
    21  updateStrategy:
    22    type: RollingUpdate
    23  
    24  replicas: 1
    25  
    26  # A name in place of the chart name for `app:` labels.
    27  nameOverride: ""
    28  
    29  # A name to substitute for the full names of resources.
    30  fullnameOverride: ""
    31  
    32  serviceAccount:
    33    # Enable service account creation.
    34    create: true
    35    # Annotations to be added to the service account.
    36    annotations: {}
    37    # The name of the service account to use.
    38    # If not set and create is true, a name is generated using the fullname template.
    39    name: ""
    40  
    41  service:
    42    type: ClusterIP
    43    port: 9710
    44  
    45  container:
    46    port: 9710
    47  
    48  # Container [security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container).
    49  # See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) for details.
    50  securityContext:
    51    readOnlyRootFilesystem: true
    52    runAsNonRoot: true
    53    runAsUser: 1000
    54  
    55  # Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
    56  # See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details.
    57  # @default -- No requests or limits.
    58  resources:
    59    requests:
    60      cpu: 100m
    61      memory: 128Mi
    62    limits:
    63      cpu: 100m
    64      memory: 128Mi
    65  
    66  ### Monitoring
    67  ###############
    68  monitoring:
    69    # Enable Prometheus PodMonitor to monitor the operator.
    70    enabled: false
    71    serviceMonitor: false
    72    serviceAnnotations: {}
    73    prometheus:
    74      name: unknown
    75  
    76  # Annotations to be added to pods and deployments.
    77  annotations: {}
    78  
    79  nodeSelector: {}
    80  
    81  tolerations: []
    82  
    83  affinity: {}