github.com/argoproj/argo-cd/v2@v2.10.5/test/e2e/testdata/duplicated-resources/duplicates-cluster.yaml (about)

     1  ---
     2  apiVersion: apiextensions.k8s.io/v1
     3  kind: CustomResourceDefinition
     4  metadata:
     5    name: clusterdummies.argoproj.io
     6    labels:
     7      e2e.argoproj.io: "true"
     8  spec:
     9    conversion:
    10      strategy: None
    11    group: argoproj.io
    12    names:
    13      kind: ClusterDummy
    14      listKind: ClusterDummyList
    15      plural: clusterdummies
    16      singular: clusterdummy
    17    scope: Cluster
    18    versions:
    19    - name: v1alpha1
    20      served: true
    21      storage: true
    22      schema:
    23        openAPIV3Schema:
    24          type: object
    25          properties:
    26            apiVersion:
    27              type: string
    28            kind:
    29              type: string
    30            metadata:
    31              type: object
    32            spec:
    33              type: object
    34              x-kubernetes-map-type: atomic
    35              x-kubernetes-preserve-unknown-fields: true
    36  
    37  ---
    38  apiVersion: argoproj.io/v1alpha1
    39  kind: ClusterDummy
    40  metadata:
    41    name: cluster-dummy-crd-instance
    42  
    43  ---
    44  apiVersion: argoproj.io/v1alpha1
    45  kind: ClusterDummy
    46  metadata:
    47    name: cluster-dummy-crd-instance
    48    namespace: default
    49  
    50  ---
    51  apiVersion: argoproj.io/v1alpha1
    52  kind: ClusterDummy
    53  metadata:
    54    name: cluster-dummy-crd-instance
    55    namespace: kube-system