github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/config/scripts/hello-helidon-argocd-application.yaml (about)

     1  # Copyright (c) 2023, Oracle and/or its affiliates.
     2  # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
     3  apiVersion: argoproj.io/v1alpha1
     4  kind: Application
     5  metadata:
     6    name: app1
     7    namespace: argocd
     8  spec:
     9    destination:
    10      name: ''
    11      namespace: argocd-helidon
    12      server: 'https://kubernetes.default.svc'
    13    source:
    14      path: 'examples/hello-helidon'
    15      repoURL: 'https://github.com/verrazzano/verrazzano'
    16      targetRevision: master
    17    project: default
    18    syncPolicy:
    19      automated:
    20        prune: true
    21        selfHeal: true
    22      syncOptions:
    23        - CreateNamespace=true
    24  
    25