github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/quickcreate/templates/ocneoci.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: clusters.verrazzano.io/v1alpha1
     5  kind: OCNEOCIQuickCreate
     6  metadata:
     7      name: {{.CLUSTER_ID}}
     8      namespace: {{.NAMESPACE}}
     9  spec:
    10      identityRef:
    11          name: test
    12          namespace: {{.NAMESPACE}}
    13      ocne:
    14          version: "{{.OCNE_VERSION}}"
    15      oci:
    16          compartment: {{.OCI_COMPARTMENT_ID}}
    17          region: {{.CAPI_CLUSTER_REGION}}
    18          imageId: {{.OCNE_IMAGE_ID}}
    19          sshPublicKey: {{.CAPI_NODE_SSH_KEY_PATH}}
    20          network:
    21              createVCN: true
    22          controlPlane:
    23              ocpus: 2
    24              memoryGbs: 16
    25              bootVolumeGbs: 50
    26              replicas: 1
    27              shape: VM.Standard.E4.Flex
    28          workers:
    29              - name: {{.CLUSTER_ID}}-1
    30                ocpus: 2
    31                memoryGbs: 16
    32                bootVolumeGbs: 50
    33                replicas: 1
    34                shape: VM.Standard.E4.Flex