github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/quickcreate/templates/ociclusteridentity.goyaml (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 4 apiVersion: v1 5 data: 6 fingerprint: {{.B64_FINGERPRINT}} 7 key: {{.B64_KEY}} 8 passphrase: "" 9 region: {{.B64_REGION}} 10 tenancy: {{.B64_TENANCY}} 11 useInstancePrincipal: ZmFsc2U= 12 user: {{.B64_USER}} 13 kind: Secret 14 metadata: 15 labels: 16 cluster.x-k8s.io/provider: infrastructure-oci 17 name: test 18 namespace: {{.NAMESPACE}} 19 type: Opaque 20 --- 21 apiVersion: infrastructure.cluster.x-k8s.io/v1beta2 22 kind: OCIClusterIdentity 23 metadata: 24 name: test 25 namespace: {{.NAMESPACE}} 26 spec: 27 type: UserPrincipal 28 allowedNamespaces: {} 29 principalSecret: 30 name: test 31 namespace: {{.NAMESPACE}}