├── .custom-gcl.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── documentation.md │ └── enhancement.md ├── pull_request_template.md └── workflows │ ├── build-cluster-api-provider-book.yaml │ └── release.yaml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── Makefile ├── NOTICE.txt ├── OWNERS ├── OWNERS_ALIASES ├── PROJECT ├── README.md ├── SECURITY.md ├── THIRD_PARTY_LICENSES.txt ├── Tiltfile ├── api ├── v1beta1 │ ├── conditions_consts.go │ ├── constants.go │ ├── conversion.go │ ├── conversion_test.go │ ├── doc.go │ ├── groupversion_info.go │ ├── ocicluster_conversion.go │ ├── ocicluster_conversion_test.go │ ├── ocicluster_types.go │ ├── ociclusteridentity_conversion.go │ ├── ociclusteridentity_types.go │ ├── ociclustertemplate_conversion.go │ ├── ociclustertemplate_types.go │ ├── ocimachine_conversion.go │ ├── ocimachine_types.go │ ├── ocimachinetemplate_types.go │ ├── ocimanagedcluster_conversion.go │ ├── ocimanagedcluster_types.go │ ├── ocimanagedclustertemplate_types.go │ ├── ocimanagedcontrolplane_conversion.go │ ├── ocimanagedcontrolplane_types.go │ ├── ocimanagedcontrolplanetemplate_types.go │ ├── types.go │ ├── validator.go │ ├── zz_generated.conversion.go │ └── zz_generated.deepcopy.go └── v1beta2 │ ├── conditions_consts.go │ ├── constants.go │ ├── conversion.go │ ├── doc.go │ ├── groupversion_info.go │ ├── ocicluster_types.go │ ├── ocicluster_webhook.go │ ├── ocicluster_webhook_test.go │ ├── ociclusteridentity_types.go │ ├── ociclustertemplate_types.go │ ├── ocimachine_types.go │ ├── ocimachinetemplate_types.go │ ├── ocimachinetemplate_webhook.go │ ├── ocimachinetemplate_webhook_test.go │ ├── ocimanagedcluster_types.go │ ├── ocimanagedcluster_webhook.go │ ├── ocimanagedcluster_webhook_test.go │ ├── ocimanagedclustertemplate_types.go │ ├── ocimanagedcontrolplane_types.go │ ├── ocimanagedcontrolplane_webhook.go │ ├── ocimanagedcontrolplane_webhook_test.go │ ├── ocimanagedcontrolplanetemplate_types.go │ ├── types.go │ ├── validator.go │ └── zz_generated.deepcopy.go ├── cloud ├── config │ ├── config.go │ └── config_test.go ├── metrics │ ├── http_request_dispatcher_wrapper.go │ └── metrics.go ├── ociutil │ ├── ociutil.go │ ├── ociutil_test.go │ └── ptr │ │ ├── from_ptr.go │ │ └── from_ptr_test.go ├── scope │ ├── clients.go │ ├── clients_mock.go │ ├── clients_test.go │ ├── cluster.go │ ├── cluster_accessor.go │ ├── cluster_client.go │ ├── cluster_test.go │ ├── defaults.go │ ├── drg_reconciler.go │ ├── drg_reconciler_test.go │ ├── drg_rpc_attachment_reconciler.go │ ├── drg_rpc_attachment_reconciler_test.go │ ├── drg_vcn_attachment_reconciler.go │ ├── drg_vcn_attachment_reconciler_test.go │ ├── internet_gateway_reconciler.go │ ├── internet_gateway_reconciler_test.go │ ├── load_balancer_reconciler.go │ ├── load_balancer_reconciler_test.go │ ├── machine.go │ ├── machine_pool.go │ ├── machine_pool_test.go │ ├── machine_test.go │ ├── managed_control_plane.go │ ├── managed_control_plane_test.go │ ├── managed_machine_pool.go │ ├── managed_machine_pool_test.go │ ├── mocks │ │ └── cluster_client_mock.go │ ├── nat_gateway_reconciler.go │ ├── nat_gateway_reconciler_test.go │ ├── network_load_balancer_reconciler.go │ ├── network_load_balancer_reconciler_test.go │ ├── nsg_reconciler.go │ ├── nsg_reconciler_test.go │ ├── oci_managed_cluster.go │ ├── oci_selfmanaged_cluster.go │ ├── route_table_reconciler.go │ ├── route_table_reconciler_test.go │ ├── security_list_reconciler.go │ ├── security_list_reconciler_test.go │ ├── service_gateway_reconciler.go │ ├── service_gateway_reconciler_test.go │ ├── subnet_reconciler.go │ ├── subnet_reconciler_test.go │ ├── suite_test.go │ ├── util.go │ ├── util_test.go │ ├── vcn_reconciler.go │ ├── vcn_reconciler_test.go │ ├── virtual_machine_pool.go │ ├── virtual_machine_pool_test.go │ ├── vnic_reconciler.go │ └── vnic_reconciler_test.go ├── services │ ├── base │ │ ├── BaseClient.go │ │ ├── client.go │ │ └── mock_base │ │ │ └── client_mock.go │ ├── compute │ │ ├── client.go │ │ └── mock_compute │ │ │ └── client_mock.go │ ├── computemanagement │ │ ├── client.go │ │ └── mock_computemanagement │ │ │ └── client_mock.go │ ├── containerengine │ │ ├── client.go │ │ └── mock_containerengine │ │ │ └── client_mock.go │ ├── identity │ │ ├── client.go │ │ └── mock_identity │ │ │ └── client_mock.go │ ├── loadbalancer │ │ ├── client.go │ │ └── mock_lb │ │ │ └── client_mock.go │ ├── networkloadbalancer │ │ ├── client.go │ │ └── mock_nlb │ │ │ └── client_mock.go │ ├── vcn │ │ ├── client.go │ │ └── mock_vcn │ │ │ └── client_mock.go │ └── workrequests │ │ ├── client.go │ │ └── mock_workrequests │ │ └── client_mock.go └── util │ ├── errors.go │ ├── suite_test.go │ ├── util.go │ └── util_test.go ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── infrastructure.cluster.x-k8s.io_ociclusteridentities.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ociclusters.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ociclustertemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimachinepoolmachines.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimachinepools.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimachines.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimachinetemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedclusters.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedclustertemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanes.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanetemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedmachinepools.yaml │ │ ├── infrastructure.cluster.x-k8s.io_ocimanagedmachinepooltemplates.yaml │ │ └── infrastructure.cluster.x-k8s.io_ocivirtualmachinepools.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_ociclusteridentities.yaml │ │ ├── cainjection_in_ociclusters.yaml │ │ ├── cainjection_in_ociclustertemplates.yaml │ │ ├── cainjection_in_ocimachinepoolmachines.yaml │ │ ├── cainjection_in_ocimachinepools.yaml │ │ ├── cainjection_in_ocimachines.yaml │ │ ├── cainjection_in_ocimanagedclusters.yaml │ │ ├── cainjection_in_ocimanagedcontrolplanes.yaml │ │ ├── cainjection_in_ocimanagedmachinepools.yaml │ │ ├── cainjection_in_ocivirtualmachinepools.yaml │ │ ├── webhook_in_ociclusteridentities.yaml │ │ ├── webhook_in_ociclusters.yaml │ │ ├── webhook_in_ociclustertemplates.yaml │ │ ├── webhook_in_ocimachinepoolmachines.yaml │ │ ├── webhook_in_ocimachinepools.yaml │ │ ├── webhook_in_ocimachines.yaml │ │ ├── webhook_in_ocimanagedclusters.yaml │ │ ├── webhook_in_ocimanagedcontrolplanes.yaml │ │ ├── webhook_in_ocimanagedmachinepools.yaml │ │ └── webhook_in_ocivirtualmachinepools.yaml ├── default │ ├── credentials.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manager_config_patch.yaml │ ├── manager_credentials_patch.yaml │ ├── manager_image_patch.yaml │ ├── manager_pull_policy.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── ocicluster_editor_role.yaml │ ├── ocicluster_viewer_role.yaml │ ├── ocimachine_editor_role.yaml │ ├── ocimachine_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── infrastructure_v1beta1_ocicluster.yaml │ └── infrastructure_v1beta1_ocimachine.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manifests.yaml │ └── service.yaml ├── controllers ├── ocicluster_controller.go ├── ocicluster_controller_test.go ├── ocimachine_controller.go ├── ocimachine_controller_test.go ├── ocimanagedcluster_controller.go ├── ocimanagedcluster_controller_test.go ├── ocimanagedcluster_controlplane_controller.go ├── ocimanagedcluster_controlplane_controller_test.go └── suite_test.go ├── dependencies.json ├── docs ├── book.toml ├── build.sh ├── mdbook-admonish.css ├── proposals │ └── 20230117-cluster-level-identity.md ├── src │ ├── SUMMARY.md │ ├── css │ │ └── mdbook-admonish.css │ ├── gs │ │ ├── advanced.md │ │ ├── create-gpu-workload-cluster.md │ │ ├── create-mhc-workload-cluster.md │ │ ├── create-windows-workload-cluster.md │ │ ├── create-workload-cluster.md │ │ ├── create-workload-templates.md │ │ ├── custom-machine-images.md │ │ ├── customize-worker-node.md │ │ ├── externally-managed-cluster-infrastructure.md │ │ ├── gs.md │ │ ├── iam.md │ │ ├── iam │ │ │ ├── iam-ocid.md │ │ │ ├── iam-oke.md │ │ │ └── iam-self-provisioned.md │ │ ├── install-cluster-api.md │ │ ├── install-csi.md │ │ ├── install-oci-ccm.md │ │ ├── mgmt │ │ │ ├── mgmt-kind.md │ │ │ └── mgmt-oke.md │ │ ├── multi-tenancy.md │ │ ├── networking.md │ │ ├── overview.md │ │ ├── provision-mgmt-cluster.md │ │ ├── pvc-bv.md │ │ └── pvc-fss.md │ ├── images │ │ ├── 3rdparty.svg │ │ ├── bootstrap.svg │ │ ├── clusterapi.drawio │ │ ├── clusteroci.svg │ │ ├── iam.svg │ │ ├── nonprod.svg │ │ ├── oke.svg │ │ ├── oke_1.png │ │ ├── oke_2.png │ │ ├── oke_3.png │ │ └── oke_4.png │ ├── introduction.md │ ├── managed │ │ ├── boot-volume-expansion.md │ │ ├── features.md │ │ ├── managedcluster.md │ │ ├── networking.md │ │ ├── oidc.md │ │ ├── self-managed-nodes.md │ │ └── virtual-nodes-and-enhanced-clusters.md │ ├── networking │ │ ├── antrea.md │ │ ├── calico.md │ │ ├── cni.md │ │ ├── custom-networking.md │ │ ├── infrastructure.md │ │ ├── ipv6.md │ │ ├── networking.md │ │ ├── private-cluster.md │ │ └── public-cluster.md │ ├── prerequisites.md │ └── reference │ │ ├── api-reference.md │ │ ├── glossary.md │ │ ├── reference.md │ │ ├── v1beta1-api.md │ │ ├── v1beta1-exp-api.md │ │ ├── v1beta2-api.md │ │ └── v1beta2-exp-api.md └── theme │ └── favicon.png ├── exp ├── api │ ├── v1beta1 │ │ ├── conditions_consts.go │ │ ├── conversion.go │ │ ├── conversion_test.go │ │ ├── doc.go │ │ ├── groupversion_type.go │ │ ├── ocimachinepool_conversion.go │ │ ├── ocimachinepool_machine_types.go │ │ ├── ocimachinepool_types.go │ │ ├── ocimachinepoolmachine_conversion.go │ │ ├── ocimanagedmachinepool_conversion.go │ │ ├── ocimanagedmachinepool_types.go │ │ ├── ocimanagedmachinepooltemplate_types.go │ │ ├── ocivirtualmachinepool_conversion.go │ │ ├── ocivirtualmachinepool_types.go │ │ ├── zz_generated.conversion.go │ │ └── zz_generated.deepcopy.go │ └── v1beta2 │ │ ├── conditions_consts.go │ │ ├── constants.go │ │ ├── conversion.go │ │ ├── doc.go │ │ ├── groupversion_type.go │ │ ├── ocimachinepool_machine_types.go │ │ ├── ocimachinepool_types.go │ │ ├── ocimanagedmachinepool_types.go │ │ ├── ocimanagedmachinepool_webhook.go │ │ ├── ocimanagedmachinepool_webhook_test.go │ │ ├── ocimanagedmachinepooltemplate_types.go │ │ ├── ocivirtualmachinepool_types.go │ │ ├── ocivirtualmachinepool_webhook.go │ │ └── zz_generated.deepcopy.go └── controllers │ ├── ocimachinepool_controller.go │ ├── ocimachinepool_controller_test.go │ ├── ocimachinepoolmachine_controller.go │ ├── ocimanaged_machinepool_controller.go │ ├── ocimanaged_machinepool_controller_test.go │ ├── ocivirtual_machinepool_controller.go │ ├── ocivirtual_machinepool_controller_test.go │ └── suite_test.go ├── feature ├── feature.go └── gates.go ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── ensure-go.sh ├── ensure-kind.sh ├── ensure-kubectl.sh ├── ensure-tags.sh ├── kustomize-sub.sh └── version.sh ├── local-dev.md ├── main.go ├── metadata.yaml ├── scripts ├── ci-conformance.sh ├── ci-e2e.sh ├── go_install.sh └── kind-with-registry.sh ├── templates ├── cluster-template-alternative-region.yaml ├── cluster-template-antrea.yaml ├── cluster-template-arm-free-tier.yaml ├── cluster-template-cluster-class.yaml ├── cluster-template-failure-domain-spread.yaml ├── cluster-template-healthcheck.yaml ├── cluster-template-local-vcn-peering.yaml ├── cluster-template-machinepool.yaml ├── cluster-template-managed-flannel.yaml ├── cluster-template-managed-private.yaml ├── cluster-template-managed-self-managed-nodes.yaml ├── cluster-template-managed-virtual-node.yaml ├── cluster-template-managed.yaml ├── cluster-template-nlb-reserved-ip-config.yaml ├── cluster-template-oci-addons.yaml ├── cluster-template-oraclelinux.yaml ├── cluster-template-remote-vcn-peering.yaml ├── cluster-template-windows-calico.yaml ├── cluster-template-with-ipv6.yaml ├── cluster-template-with-nsg.yaml ├── cluster-template-with-paravirt-bv.yaml ├── cluster-template.yaml └── clusterclass-example.yaml ├── test ├── README.md └── e2e │ ├── capi_test.go │ ├── ccm_helpers.go │ ├── cluster_test.go │ ├── common.go │ ├── config │ └── e2e_conf.yaml │ ├── conformance_test.go │ ├── data │ ├── ccm │ │ └── ccm.yaml │ ├── cni │ │ ├── README.md │ │ ├── antrea │ │ └── calico │ ├── infrastructure-oci │ │ ├── bases │ │ │ ├── ccm.yaml │ │ │ └── crs.yaml │ │ ├── v1beta1 │ │ │ ├── bases │ │ │ │ ├── cluster.yaml │ │ │ │ └── md.yaml │ │ │ ├── cluster-template-custom-networking-nsg │ │ │ │ ├── cluster.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── metadata.yaml │ │ └── v1beta2 │ │ │ ├── bases │ │ │ ├── cluster.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-alternative-region │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-antrea │ │ │ ├── cluster.yaml │ │ │ ├── crs.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-bare-metal │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-cluster-class │ │ │ ├── cluster-template.yaml │ │ │ ├── clusterclass-test-cluster-class.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-cluster-identity │ │ │ ├── cluster-identity.yaml │ │ │ ├── cluster.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-custom-networking-seclist │ │ │ ├── cluster.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-externally-managed-vcn │ │ │ ├── cluster.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-kcp-remediation │ │ │ ├── kustomization.yaml │ │ │ └── mhc.yaml │ │ │ ├── cluster-template-local-vcn-peering │ │ │ ├── cluster.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-machine-pool │ │ │ ├── kustomization.yaml │ │ │ └── machine-pool.yaml │ │ │ ├── cluster-template-machine-with-ipv6 │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-managed-cluster-identity │ │ │ ├── cluster-identity.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── machine-pool.yaml │ │ │ ├── cluster-template-managed-node-recycling │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── machine-pool.yaml │ │ │ ├── cluster-template-managed-self-managed-nodes │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── machine-pool.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-managed-virtual │ │ │ ├── cluster-identity.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── machine-pool.yaml │ │ │ ├── cluster-template-managed │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── machine-pool.yaml │ │ │ ├── cluster-template-md-remediation │ │ │ ├── kustomization.yaml │ │ │ ├── md.yaml │ │ │ └── mhc.yaml │ │ │ ├── cluster-template-multiple-node-nsg │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-node-drain │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-oracle-linux │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-remote-vcn-peering │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-self-manage-nsg │ │ │ ├── cluster.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cluster-template-windows-calico │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template-with-paravirt-bv │ │ │ ├── kustomization.yaml │ │ │ └── md.yaml │ │ │ ├── cluster-template │ │ │ └── kustomization.yaml │ │ │ └── metadata.yaml │ ├── kubetest │ │ ├── conformance-fast.yaml │ │ └── conformance.yaml │ └── shared │ │ └── v1beta1 │ │ └── metadata.yaml │ ├── e2e_suite_test.go │ ├── log.go │ ├── managed_cluster_test.go │ └── upgrade_test.go ├── tilt-settings.json ├── tilt_modules ├── cert_manager │ ├── README.md │ ├── Tiltfile │ └── test │ │ ├── Tiltfile │ │ └── test.sh └── extensions.json └── version └── version.go /.custom-gcl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.custom-gcl.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-cluster-api-provider-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/workflows/build-cluster-api-provider-book.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/Tiltfile -------------------------------------------------------------------------------- /api/v1beta1/conditions_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/conditions_consts.go -------------------------------------------------------------------------------- /api/v1beta1/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/constants.go -------------------------------------------------------------------------------- /api/v1beta1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/conversion.go -------------------------------------------------------------------------------- /api/v1beta1/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/conversion_test.go -------------------------------------------------------------------------------- /api/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/doc.go -------------------------------------------------------------------------------- /api/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta1/ocicluster_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocicluster_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ocicluster_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocicluster_conversion_test.go -------------------------------------------------------------------------------- /api/v1beta1/ocicluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocicluster_types.go -------------------------------------------------------------------------------- /api/v1beta1/ociclusteridentity_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ociclusteridentity_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ociclusteridentity_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ociclusteridentity_types.go -------------------------------------------------------------------------------- /api/v1beta1/ociclustertemplate_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ociclustertemplate_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ociclustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ociclustertemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimachine_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimachine_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ocimachine_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimachine_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimachinetemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimachinetemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedcluster_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedcluster_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedcluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedcluster_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedclustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedclustertemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedcontrolplane_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedcontrolplane_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedcontrolplane_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedcontrolplane_types.go -------------------------------------------------------------------------------- /api/v1beta1/ocimanagedcontrolplanetemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/ocimanagedcontrolplanetemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/types.go -------------------------------------------------------------------------------- /api/v1beta1/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/validator.go -------------------------------------------------------------------------------- /api/v1beta1/zz_generated.conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/zz_generated.conversion.go -------------------------------------------------------------------------------- /api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /api/v1beta2/conditions_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/conditions_consts.go -------------------------------------------------------------------------------- /api/v1beta2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/constants.go -------------------------------------------------------------------------------- /api/v1beta2/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/conversion.go -------------------------------------------------------------------------------- /api/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/doc.go -------------------------------------------------------------------------------- /api/v1beta2/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta2/ocicluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocicluster_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocicluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocicluster_webhook.go -------------------------------------------------------------------------------- /api/v1beta2/ocicluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocicluster_webhook_test.go -------------------------------------------------------------------------------- /api/v1beta2/ociclusteridentity_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ociclusteridentity_types.go -------------------------------------------------------------------------------- /api/v1beta2/ociclustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ociclustertemplate_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimachine_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimachine_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimachinetemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimachinetemplate_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimachinetemplate_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimachinetemplate_webhook.go -------------------------------------------------------------------------------- /api/v1beta2/ocimachinetemplate_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimachinetemplate_webhook_test.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcluster_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcluster_webhook.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcluster_webhook_test.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedclustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedclustertemplate_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcontrolplane_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcontrolplane_types.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcontrolplane_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcontrolplane_webhook.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcontrolplane_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcontrolplane_webhook_test.go -------------------------------------------------------------------------------- /api/v1beta2/ocimanagedcontrolplanetemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/ocimanagedcontrolplanetemplate_types.go -------------------------------------------------------------------------------- /api/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/types.go -------------------------------------------------------------------------------- /api/v1beta2/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/validator.go -------------------------------------------------------------------------------- /api/v1beta2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/api/v1beta2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /cloud/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/config/config.go -------------------------------------------------------------------------------- /cloud/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/config/config_test.go -------------------------------------------------------------------------------- /cloud/metrics/http_request_dispatcher_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/metrics/http_request_dispatcher_wrapper.go -------------------------------------------------------------------------------- /cloud/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/metrics/metrics.go -------------------------------------------------------------------------------- /cloud/ociutil/ociutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/ociutil/ociutil.go -------------------------------------------------------------------------------- /cloud/ociutil/ociutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/ociutil/ociutil_test.go -------------------------------------------------------------------------------- /cloud/ociutil/ptr/from_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/ociutil/ptr/from_ptr.go -------------------------------------------------------------------------------- /cloud/ociutil/ptr/from_ptr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/ociutil/ptr/from_ptr_test.go -------------------------------------------------------------------------------- /cloud/scope/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/clients.go -------------------------------------------------------------------------------- /cloud/scope/clients_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/clients_mock.go -------------------------------------------------------------------------------- /cloud/scope/clients_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/clients_test.go -------------------------------------------------------------------------------- /cloud/scope/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/cluster.go -------------------------------------------------------------------------------- /cloud/scope/cluster_accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/cluster_accessor.go -------------------------------------------------------------------------------- /cloud/scope/cluster_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/cluster_client.go -------------------------------------------------------------------------------- /cloud/scope/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/cluster_test.go -------------------------------------------------------------------------------- /cloud/scope/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/defaults.go -------------------------------------------------------------------------------- /cloud/scope/drg_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/drg_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/drg_rpc_attachment_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_rpc_attachment_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/drg_rpc_attachment_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_rpc_attachment_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/drg_vcn_attachment_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_vcn_attachment_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/drg_vcn_attachment_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/drg_vcn_attachment_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/internet_gateway_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/internet_gateway_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/internet_gateway_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/internet_gateway_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/load_balancer_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/load_balancer_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/load_balancer_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/load_balancer_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/machine.go -------------------------------------------------------------------------------- /cloud/scope/machine_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/machine_pool.go -------------------------------------------------------------------------------- /cloud/scope/machine_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/machine_pool_test.go -------------------------------------------------------------------------------- /cloud/scope/machine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/machine_test.go -------------------------------------------------------------------------------- /cloud/scope/managed_control_plane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/managed_control_plane.go -------------------------------------------------------------------------------- /cloud/scope/managed_control_plane_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/managed_control_plane_test.go -------------------------------------------------------------------------------- /cloud/scope/managed_machine_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/managed_machine_pool.go -------------------------------------------------------------------------------- /cloud/scope/managed_machine_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/managed_machine_pool_test.go -------------------------------------------------------------------------------- /cloud/scope/mocks/cluster_client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/mocks/cluster_client_mock.go -------------------------------------------------------------------------------- /cloud/scope/nat_gateway_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/nat_gateway_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/nat_gateway_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/nat_gateway_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/network_load_balancer_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/network_load_balancer_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/network_load_balancer_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/network_load_balancer_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/nsg_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/nsg_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/nsg_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/nsg_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/oci_managed_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/oci_managed_cluster.go -------------------------------------------------------------------------------- /cloud/scope/oci_selfmanaged_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/oci_selfmanaged_cluster.go -------------------------------------------------------------------------------- /cloud/scope/route_table_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/route_table_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/route_table_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/route_table_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/security_list_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/security_list_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/security_list_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/security_list_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/service_gateway_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/service_gateway_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/service_gateway_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/service_gateway_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/subnet_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/subnet_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/subnet_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/subnet_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/suite_test.go -------------------------------------------------------------------------------- /cloud/scope/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/util.go -------------------------------------------------------------------------------- /cloud/scope/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/util_test.go -------------------------------------------------------------------------------- /cloud/scope/vcn_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/vcn_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/vcn_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/vcn_reconciler_test.go -------------------------------------------------------------------------------- /cloud/scope/virtual_machine_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/virtual_machine_pool.go -------------------------------------------------------------------------------- /cloud/scope/virtual_machine_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/virtual_machine_pool_test.go -------------------------------------------------------------------------------- /cloud/scope/vnic_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/vnic_reconciler.go -------------------------------------------------------------------------------- /cloud/scope/vnic_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/scope/vnic_reconciler_test.go -------------------------------------------------------------------------------- /cloud/services/base/BaseClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/base/BaseClient.go -------------------------------------------------------------------------------- /cloud/services/base/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/base/client.go -------------------------------------------------------------------------------- /cloud/services/base/mock_base/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/base/mock_base/client_mock.go -------------------------------------------------------------------------------- /cloud/services/compute/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/compute/client.go -------------------------------------------------------------------------------- /cloud/services/compute/mock_compute/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/compute/mock_compute/client_mock.go -------------------------------------------------------------------------------- /cloud/services/computemanagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/computemanagement/client.go -------------------------------------------------------------------------------- /cloud/services/computemanagement/mock_computemanagement/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/computemanagement/mock_computemanagement/client_mock.go -------------------------------------------------------------------------------- /cloud/services/containerengine/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/containerengine/client.go -------------------------------------------------------------------------------- /cloud/services/containerengine/mock_containerengine/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/containerengine/mock_containerengine/client_mock.go -------------------------------------------------------------------------------- /cloud/services/identity/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/identity/client.go -------------------------------------------------------------------------------- /cloud/services/identity/mock_identity/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/identity/mock_identity/client_mock.go -------------------------------------------------------------------------------- /cloud/services/loadbalancer/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/loadbalancer/client.go -------------------------------------------------------------------------------- /cloud/services/loadbalancer/mock_lb/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/loadbalancer/mock_lb/client_mock.go -------------------------------------------------------------------------------- /cloud/services/networkloadbalancer/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/networkloadbalancer/client.go -------------------------------------------------------------------------------- /cloud/services/networkloadbalancer/mock_nlb/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/networkloadbalancer/mock_nlb/client_mock.go -------------------------------------------------------------------------------- /cloud/services/vcn/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/vcn/client.go -------------------------------------------------------------------------------- /cloud/services/vcn/mock_vcn/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/vcn/mock_vcn/client_mock.go -------------------------------------------------------------------------------- /cloud/services/workrequests/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/workrequests/client.go -------------------------------------------------------------------------------- /cloud/services/workrequests/mock_workrequests/client_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/services/workrequests/mock_workrequests/client_mock.go -------------------------------------------------------------------------------- /cloud/util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/util/errors.go -------------------------------------------------------------------------------- /cloud/util/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/util/suite_test.go -------------------------------------------------------------------------------- /cloud/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/util/util.go -------------------------------------------------------------------------------- /cloud/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/cloud/util/util_test.go -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ociclusteridentities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ociclusteridentities.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ociclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ociclusters.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ociclustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ociclustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinepoolmachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinepoolmachines.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinepools.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachines.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimachinetemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedclusters.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedclustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedclustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanes.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedcontrolplanetemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedmachinepools.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedmachinepooltemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocimanagedmachinepooltemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_ocivirtualmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_ocivirtualmachinepools.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ociclusteridentities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ociclusteridentities.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ociclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ociclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ociclustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ociclustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimachinepoolmachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimachinepoolmachines.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimachinepools.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimachines.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimanagedclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimanagedclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimanagedcontrolplanes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimanagedcontrolplanes.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocimanagedmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocimanagedmachinepools.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_ocivirtualmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/cainjection_in_ocivirtualmachinepools.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ociclusteridentities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ociclusteridentities.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ociclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ociclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ociclustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ociclustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimachinepoolmachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimachinepoolmachines.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimachinepools.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimachines.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimanagedclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimanagedclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimanagedcontrolplanes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimanagedcontrolplanes.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocimanagedmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocimanagedmachinepools.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_ocivirtualmachinepools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/crd/patches/webhook_in_ocivirtualmachinepools.yaml -------------------------------------------------------------------------------- /config/default/credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/credentials.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_credentials_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/manager_credentials_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_image_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/manager_image_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_pull_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/manager_pull_policy.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/ocicluster_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/ocicluster_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/ocicluster_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/ocicluster_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/ocimachine_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/ocimachine_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/ocimachine_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/ocimachine_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/infrastructure_v1beta1_ocicluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/samples/infrastructure_v1beta1_ocicluster.yaml -------------------------------------------------------------------------------- /config/samples/infrastructure_v1beta1_ocimachine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/samples/infrastructure_v1beta1_ocimachine.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/ocicluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocicluster_controller.go -------------------------------------------------------------------------------- /controllers/ocicluster_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocicluster_controller_test.go -------------------------------------------------------------------------------- /controllers/ocimachine_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimachine_controller.go -------------------------------------------------------------------------------- /controllers/ocimachine_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimachine_controller_test.go -------------------------------------------------------------------------------- /controllers/ocimanagedcluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimanagedcluster_controller.go -------------------------------------------------------------------------------- /controllers/ocimanagedcluster_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimanagedcluster_controller_test.go -------------------------------------------------------------------------------- /controllers/ocimanagedcluster_controlplane_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimanagedcluster_controlplane_controller.go -------------------------------------------------------------------------------- /controllers/ocimanagedcluster_controlplane_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/ocimanagedcluster_controlplane_controller_test.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/dependencies.json -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/build.sh -------------------------------------------------------------------------------- /docs/mdbook-admonish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/mdbook-admonish.css -------------------------------------------------------------------------------- /docs/proposals/20230117-cluster-level-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/proposals/20230117-cluster-level-identity.md -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/css/mdbook-admonish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/css/mdbook-admonish.css -------------------------------------------------------------------------------- /docs/src/gs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/advanced.md -------------------------------------------------------------------------------- /docs/src/gs/create-gpu-workload-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/create-gpu-workload-cluster.md -------------------------------------------------------------------------------- /docs/src/gs/create-mhc-workload-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/create-mhc-workload-cluster.md -------------------------------------------------------------------------------- /docs/src/gs/create-windows-workload-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/create-windows-workload-cluster.md -------------------------------------------------------------------------------- /docs/src/gs/create-workload-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/create-workload-cluster.md -------------------------------------------------------------------------------- /docs/src/gs/create-workload-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/create-workload-templates.md -------------------------------------------------------------------------------- /docs/src/gs/custom-machine-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/custom-machine-images.md -------------------------------------------------------------------------------- /docs/src/gs/customize-worker-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/customize-worker-node.md -------------------------------------------------------------------------------- /docs/src/gs/externally-managed-cluster-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/externally-managed-cluster-infrastructure.md -------------------------------------------------------------------------------- /docs/src/gs/gs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/gs.md -------------------------------------------------------------------------------- /docs/src/gs/iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/iam.md -------------------------------------------------------------------------------- /docs/src/gs/iam/iam-ocid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/iam/iam-ocid.md -------------------------------------------------------------------------------- /docs/src/gs/iam/iam-oke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/iam/iam-oke.md -------------------------------------------------------------------------------- /docs/src/gs/iam/iam-self-provisioned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/iam/iam-self-provisioned.md -------------------------------------------------------------------------------- /docs/src/gs/install-cluster-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/install-cluster-api.md -------------------------------------------------------------------------------- /docs/src/gs/install-csi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/install-csi.md -------------------------------------------------------------------------------- /docs/src/gs/install-oci-ccm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/install-oci-ccm.md -------------------------------------------------------------------------------- /docs/src/gs/mgmt/mgmt-kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/mgmt/mgmt-kind.md -------------------------------------------------------------------------------- /docs/src/gs/mgmt/mgmt-oke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/mgmt/mgmt-oke.md -------------------------------------------------------------------------------- /docs/src/gs/multi-tenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/multi-tenancy.md -------------------------------------------------------------------------------- /docs/src/gs/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/networking.md -------------------------------------------------------------------------------- /docs/src/gs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/overview.md -------------------------------------------------------------------------------- /docs/src/gs/provision-mgmt-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/provision-mgmt-cluster.md -------------------------------------------------------------------------------- /docs/src/gs/pvc-bv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/pvc-bv.md -------------------------------------------------------------------------------- /docs/src/gs/pvc-fss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/gs/pvc-fss.md -------------------------------------------------------------------------------- /docs/src/images/3rdparty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/3rdparty.svg -------------------------------------------------------------------------------- /docs/src/images/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/bootstrap.svg -------------------------------------------------------------------------------- /docs/src/images/clusterapi.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/clusterapi.drawio -------------------------------------------------------------------------------- /docs/src/images/clusteroci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/clusteroci.svg -------------------------------------------------------------------------------- /docs/src/images/iam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/iam.svg -------------------------------------------------------------------------------- /docs/src/images/nonprod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/nonprod.svg -------------------------------------------------------------------------------- /docs/src/images/oke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/oke.svg -------------------------------------------------------------------------------- /docs/src/images/oke_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/oke_1.png -------------------------------------------------------------------------------- /docs/src/images/oke_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/oke_2.png -------------------------------------------------------------------------------- /docs/src/images/oke_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/oke_3.png -------------------------------------------------------------------------------- /docs/src/images/oke_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/images/oke_4.png -------------------------------------------------------------------------------- /docs/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/introduction.md -------------------------------------------------------------------------------- /docs/src/managed/boot-volume-expansion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/boot-volume-expansion.md -------------------------------------------------------------------------------- /docs/src/managed/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/features.md -------------------------------------------------------------------------------- /docs/src/managed/managedcluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/managedcluster.md -------------------------------------------------------------------------------- /docs/src/managed/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/networking.md -------------------------------------------------------------------------------- /docs/src/managed/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/oidc.md -------------------------------------------------------------------------------- /docs/src/managed/self-managed-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/self-managed-nodes.md -------------------------------------------------------------------------------- /docs/src/managed/virtual-nodes-and-enhanced-clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/managed/virtual-nodes-and-enhanced-clusters.md -------------------------------------------------------------------------------- /docs/src/networking/antrea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/antrea.md -------------------------------------------------------------------------------- /docs/src/networking/calico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/calico.md -------------------------------------------------------------------------------- /docs/src/networking/cni.md: -------------------------------------------------------------------------------- 1 | # CNI 2 | -------------------------------------------------------------------------------- /docs/src/networking/custom-networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/custom-networking.md -------------------------------------------------------------------------------- /docs/src/networking/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/infrastructure.md -------------------------------------------------------------------------------- /docs/src/networking/ipv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/ipv6.md -------------------------------------------------------------------------------- /docs/src/networking/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/networking.md -------------------------------------------------------------------------------- /docs/src/networking/private-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/networking/private-cluster.md -------------------------------------------------------------------------------- /docs/src/networking/public-cluster.md: -------------------------------------------------------------------------------- 1 | # Using Public clusters 2 | -------------------------------------------------------------------------------- /docs/src/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/prerequisites.md -------------------------------------------------------------------------------- /docs/src/reference/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/api-reference.md -------------------------------------------------------------------------------- /docs/src/reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/glossary.md -------------------------------------------------------------------------------- /docs/src/reference/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/reference.md -------------------------------------------------------------------------------- /docs/src/reference/v1beta1-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/v1beta1-api.md -------------------------------------------------------------------------------- /docs/src/reference/v1beta1-exp-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/v1beta1-exp-api.md -------------------------------------------------------------------------------- /docs/src/reference/v1beta2-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/v1beta2-api.md -------------------------------------------------------------------------------- /docs/src/reference/v1beta2-exp-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/src/reference/v1beta2-exp-api.md -------------------------------------------------------------------------------- /docs/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/docs/theme/favicon.png -------------------------------------------------------------------------------- /exp/api/v1beta1/conditions_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/conditions_consts.go -------------------------------------------------------------------------------- /exp/api/v1beta1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/conversion_test.go -------------------------------------------------------------------------------- /exp/api/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/doc.go -------------------------------------------------------------------------------- /exp/api/v1beta1/groupversion_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/groupversion_type.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimachinepool_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimachinepool_conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimachinepool_machine_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimachinepool_machine_types.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimachinepoolmachine_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimachinepoolmachine_conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimanagedmachinepool_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimanagedmachinepool_conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimanagedmachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimanagedmachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocimanagedmachinepooltemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocimanagedmachinepooltemplate_types.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocivirtualmachinepool_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocivirtualmachinepool_conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/ocivirtualmachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/ocivirtualmachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta1/zz_generated.conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/zz_generated.conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /exp/api/v1beta2/conditions_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/conditions_consts.go -------------------------------------------------------------------------------- /exp/api/v1beta2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/constants.go -------------------------------------------------------------------------------- /exp/api/v1beta2/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/conversion.go -------------------------------------------------------------------------------- /exp/api/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/doc.go -------------------------------------------------------------------------------- /exp/api/v1beta2/groupversion_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/groupversion_type.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimachinepool_machine_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimachinepool_machine_types.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimanagedmachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimanagedmachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimanagedmachinepool_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimanagedmachinepool_webhook.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimanagedmachinepool_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimanagedmachinepool_webhook_test.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocimanagedmachinepooltemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocimanagedmachinepooltemplate_types.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocivirtualmachinepool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocivirtualmachinepool_types.go -------------------------------------------------------------------------------- /exp/api/v1beta2/ocivirtualmachinepool_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/ocivirtualmachinepool_webhook.go -------------------------------------------------------------------------------- /exp/api/v1beta2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/api/v1beta2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /exp/controllers/ocimachinepool_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocimachinepool_controller.go -------------------------------------------------------------------------------- /exp/controllers/ocimachinepool_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocimachinepool_controller_test.go -------------------------------------------------------------------------------- /exp/controllers/ocimachinepoolmachine_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocimachinepoolmachine_controller.go -------------------------------------------------------------------------------- /exp/controllers/ocimanaged_machinepool_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocimanaged_machinepool_controller.go -------------------------------------------------------------------------------- /exp/controllers/ocimanaged_machinepool_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocimanaged_machinepool_controller_test.go -------------------------------------------------------------------------------- /exp/controllers/ocivirtual_machinepool_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocivirtual_machinepool_controller.go -------------------------------------------------------------------------------- /exp/controllers/ocivirtual_machinepool_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/ocivirtual_machinepool_controller_test.go -------------------------------------------------------------------------------- /exp/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/exp/controllers/suite_test.go -------------------------------------------------------------------------------- /feature/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/feature/feature.go -------------------------------------------------------------------------------- /feature/gates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/feature/gates.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/ensure-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/ensure-go.sh -------------------------------------------------------------------------------- /hack/ensure-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/ensure-kind.sh -------------------------------------------------------------------------------- /hack/ensure-kubectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/ensure-kubectl.sh -------------------------------------------------------------------------------- /hack/ensure-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/ensure-tags.sh -------------------------------------------------------------------------------- /hack/kustomize-sub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/kustomize-sub.sh -------------------------------------------------------------------------------- /hack/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/hack/version.sh -------------------------------------------------------------------------------- /local-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/local-dev.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/main.go -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/metadata.yaml -------------------------------------------------------------------------------- /scripts/ci-conformance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/scripts/ci-conformance.sh -------------------------------------------------------------------------------- /scripts/ci-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/scripts/ci-e2e.sh -------------------------------------------------------------------------------- /scripts/go_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/scripts/go_install.sh -------------------------------------------------------------------------------- /scripts/kind-with-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/scripts/kind-with-registry.sh -------------------------------------------------------------------------------- /templates/cluster-template-alternative-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-alternative-region.yaml -------------------------------------------------------------------------------- /templates/cluster-template-antrea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-antrea.yaml -------------------------------------------------------------------------------- /templates/cluster-template-arm-free-tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-arm-free-tier.yaml -------------------------------------------------------------------------------- /templates/cluster-template-cluster-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-cluster-class.yaml -------------------------------------------------------------------------------- /templates/cluster-template-failure-domain-spread.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-failure-domain-spread.yaml -------------------------------------------------------------------------------- /templates/cluster-template-healthcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-healthcheck.yaml -------------------------------------------------------------------------------- /templates/cluster-template-local-vcn-peering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-local-vcn-peering.yaml -------------------------------------------------------------------------------- /templates/cluster-template-machinepool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-machinepool.yaml -------------------------------------------------------------------------------- /templates/cluster-template-managed-flannel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-managed-flannel.yaml -------------------------------------------------------------------------------- /templates/cluster-template-managed-private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-managed-private.yaml -------------------------------------------------------------------------------- /templates/cluster-template-managed-self-managed-nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-managed-self-managed-nodes.yaml -------------------------------------------------------------------------------- /templates/cluster-template-managed-virtual-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-managed-virtual-node.yaml -------------------------------------------------------------------------------- /templates/cluster-template-managed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-managed.yaml -------------------------------------------------------------------------------- /templates/cluster-template-nlb-reserved-ip-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-nlb-reserved-ip-config.yaml -------------------------------------------------------------------------------- /templates/cluster-template-oci-addons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-oci-addons.yaml -------------------------------------------------------------------------------- /templates/cluster-template-oraclelinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-oraclelinux.yaml -------------------------------------------------------------------------------- /templates/cluster-template-remote-vcn-peering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-remote-vcn-peering.yaml -------------------------------------------------------------------------------- /templates/cluster-template-windows-calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-windows-calico.yaml -------------------------------------------------------------------------------- /templates/cluster-template-with-ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-with-ipv6.yaml -------------------------------------------------------------------------------- /templates/cluster-template-with-nsg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-with-nsg.yaml -------------------------------------------------------------------------------- /templates/cluster-template-with-paravirt-bv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template-with-paravirt-bv.yaml -------------------------------------------------------------------------------- /templates/cluster-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/cluster-template.yaml -------------------------------------------------------------------------------- /templates/clusterclass-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/templates/clusterclass-example.yaml -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/README.md -------------------------------------------------------------------------------- /test/e2e/capi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/capi_test.go -------------------------------------------------------------------------------- /test/e2e/ccm_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/ccm_helpers.go -------------------------------------------------------------------------------- /test/e2e/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/cluster_test.go -------------------------------------------------------------------------------- /test/e2e/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/common.go -------------------------------------------------------------------------------- /test/e2e/config/e2e_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/config/e2e_conf.yaml -------------------------------------------------------------------------------- /test/e2e/conformance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/conformance_test.go -------------------------------------------------------------------------------- /test/e2e/data/ccm/ccm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/ccm/ccm.yaml -------------------------------------------------------------------------------- /test/e2e/data/cni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/cni/README.md -------------------------------------------------------------------------------- /test/e2e/data/cni/antrea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/cni/antrea -------------------------------------------------------------------------------- /test/e2e/data/cni/calico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/cni/calico -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/bases/ccm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/bases/ccm.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/bases/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/bases/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta1/bases/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta1/bases/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta1/bases/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta1/bases/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta1/cluster-template-custom-networking-nsg/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta1/cluster-template-custom-networking-nsg/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta1/cluster-template-custom-networking-nsg/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta1/cluster-template-custom-networking-nsg/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta1/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta1/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/bases/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/bases/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/bases/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/bases/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-alternative-region/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-antrea/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-bare-metal/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/cluster-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/cluster-template.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/clusterclass-test-cluster-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/clusterclass-test-cluster-class.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-class/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/cluster-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/cluster-identity.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-cluster-identity/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-custom-networking-seclist/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-custom-networking-seclist/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-custom-networking-seclist/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-custom-networking-seclist/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-externally-managed-vcn/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-externally-managed-vcn/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-externally-managed-vcn/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-externally-managed-vcn/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-kcp-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-kcp-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-kcp-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-kcp-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-local-vcn-peering/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-local-vcn-peering/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-local-vcn-peering/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-local-vcn-peering/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-pool/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-pool/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-pool/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-pool/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-machine-with-ipv6/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/cluster-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/cluster-identity.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-cluster-identity/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-node-recycling/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-self-managed-nodes/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/cluster-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/cluster-identity.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed-virtual/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-managed/machine-pool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-multiple-node-nsg/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-node-drain/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-oracle-linux/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-remote-vcn-peering/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-self-manage-nsg/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-self-manage-nsg/cluster.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-self-manage-nsg/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-self-manage-nsg/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-windows-calico/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-windows-calico/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-windows-calico/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-windows-calico/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-with-paravirt-bv/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-with-paravirt-bv/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template-with-paravirt-bv/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template-with-paravirt-bv/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/cluster-template/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/cluster-template/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-oci/v1beta2/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/infrastructure-oci/v1beta2/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/kubetest/conformance-fast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/kubetest/conformance-fast.yaml -------------------------------------------------------------------------------- /test/e2e/data/kubetest/conformance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/kubetest/conformance.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/v1beta1/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/data/shared/v1beta1/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/log.go -------------------------------------------------------------------------------- /test/e2e/managed_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/managed_cluster_test.go -------------------------------------------------------------------------------- /test/e2e/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/test/e2e/upgrade_test.go -------------------------------------------------------------------------------- /tilt-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt-settings.json -------------------------------------------------------------------------------- /tilt_modules/cert_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt_modules/cert_manager/README.md -------------------------------------------------------------------------------- /tilt_modules/cert_manager/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt_modules/cert_manager/Tiltfile -------------------------------------------------------------------------------- /tilt_modules/cert_manager/test/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt_modules/cert_manager/test/Tiltfile -------------------------------------------------------------------------------- /tilt_modules/cert_manager/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt_modules/cert_manager/test/test.sh -------------------------------------------------------------------------------- /tilt_modules/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/tilt_modules/extensions.json -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/cluster-api-provider-oci/HEAD/version/version.go --------------------------------------------------------------------------------