github.com/argoproj/argo-cd/v3@v3.2.1/resource_customizations/helm.toolkit.fluxcd.io/HelmRelease/actions/testdata/initial_helmrelease.yaml (about)

     1  apiVersion: helm.toolkit.fluxcd.io/v2
     2  kind: HelmRelease
     3  metadata:
     4    name: podinfo
     5    namespace: default
     6  spec:
     7    interval: 10m
     8    timeout: 5m
     9    chart:
    10      spec:
    11        chart: podinfo
    12        version: '6.5.*'
    13        sourceRef:
    14          kind: HelmRepository
    15          name: podinfo
    16        interval: 5m
    17    releaseName: podinfo
    18    install:
    19      remediation:
    20        retries: 3
    21    upgrade:
    22      remediation:
    23        retries: 3
    24    test:
    25      enable: true
    26    driftDetection:
    27      mode: enabled
    28      ignore:
    29      - paths: ["/spec/replicas"]
    30        target:
    31          kind: Deployment
    32    values:
    33      replicaCount: 2