github.com/verrazzano/verrazzano@v1.7.0/platform-operator/helm_config/overrides/external-dns-values.yaml (about)

     1  
     2  # Copyright (c) 2020, 2023, Oracle and/or its affiliates.
     3  # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
     4  
     5  # NOTE: The image you're looking for isn't here. The external-dns image now comes from
     6  # the bill of materials file (verrazzano-bom.json).
     7  
     8  interval: "24h"
     9  logLevel: info
    10  registry: "txt"
    11  policy: sync
    12  provider: oci
    13  sources:
    14    - service
    15    - ingress
    16  
    17  triggerLoopOnEvent: true
    18  
    19  # Verrazzano container security standards
    20  securityContext:
    21    allowPrivilegeEscalation: false
    22    capabilities:
    23      drop:
    24        - ALL
    25    privileged: false
    26  
    27  # Verrazzano pod security standards
    28  podSecurityContext:
    29    fsGroup: 99 # Run as user/group nobody
    30    runAsGroup: 99
    31    runAsUser: 99
    32    runAsNonRoot: true
    33    seccompProfile:
    34      type: RuntimeDefault
    35  
    36  podLabels:
    37    sidecar.istio.io/inject: "false"