├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── failing-test.yaml │ ├── feature_request.md │ └── flaking-test.yaml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build-fkas-images-action.yml │ ├── build-images-action.yml │ ├── dependabot.yml │ ├── golangci-lint.yml │ ├── pr-gh-workflow-approve.yaml │ ├── pr-link-check.yml │ ├── pr-verifier.yaml │ ├── release.yaml │ ├── scheduled-link-check.yml │ └── yamllint.yaml ├── .gitignore ├── .golangci.yaml ├── .lycheeignore ├── .markdownlint-cli2.yaml ├── .yamllint.yaml ├── CONTRIBUTING.md ├── DCO ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── Tiltfile ├── api ├── go.mod ├── go.sum └── v1beta1 │ ├── common_types.go │ ├── common_types_test.go │ ├── condition_consts.go │ ├── conversion.go │ ├── doc.go │ ├── groupversion_info.go │ ├── metal3cluster_types.go │ ├── metal3cluster_types_test.go │ ├── metal3clustertemplate_types.go │ ├── metal3data_types.go │ ├── metal3dataclaim_types.go │ ├── metal3datatemplate_types.go │ ├── metal3machine_types.go │ ├── metal3machine_types_test.go │ ├── metal3machinetemplate_types.go │ ├── metal3remediation_types.go │ ├── metal3remediationtemplate_types.go │ ├── v1beta1_suite_test.go │ └── zz_generated.deepcopy.go ├── baremetal ├── manager_factory.go ├── manager_factory_test.go ├── metal3cluster_manager.go ├── metal3cluster_manager_test.go ├── metal3data_manager.go ├── metal3data_manager_test.go ├── metal3datatemplate_manager.go ├── metal3datatemplate_manager_test.go ├── metal3machine_manager.go ├── metal3machine_manager_test.go ├── metal3machinetemplate_manager.go ├── metal3machinetemplate_manager_test.go ├── metal3remediation_manager.go ├── metal3remediation_manager_test.go ├── mocks │ ├── zz_generated.manager_factory.go │ ├── zz_generated.metal3cluster_manager.go │ ├── zz_generated.metal3data_manager.go │ ├── zz_generated.metal3datatemplate_manager.go │ ├── zz_generated.metal3machine_manager.go │ ├── zz_generated.metal3machinetemplate_manager.go │ └── zz_generated.metal3remediation_manager.go ├── reconcile_error.go ├── reconcile_error_test.go ├── remote │ ├── remote.go │ ├── remote_test.go │ └── suite_test.go ├── suite_test.go ├── utils.go └── utils_test.go ├── clusterctl-settings.json ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── infrastructure.cluster.x-k8s.io_metal3clusters.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3clustertemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3dataclaims.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3datas.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3datatemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3machines.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3machinetemplates.yaml │ │ ├── infrastructure.cluster.x-k8s.io_metal3remediations.yaml │ │ └── infrastructure.cluster.x-k8s.io_metal3remediationtemplates.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_metal3clusters.yaml │ │ ├── cainjection_in_metal3dataclaims.yaml │ │ ├── cainjection_in_metal3datas.yaml │ │ ├── cainjection_in_metal3datatemplates.yaml │ │ ├── cainjection_in_metal3machines.yaml │ │ ├── cainjection_in_metal3machinetemplates.yaml │ │ ├── cainjection_in_metal3remediations.yaml │ │ ├── cainjection_in_metal3remediationtemplates.yaml │ │ ├── skipcrdnamecheck_in_metal3datas.yaml │ │ ├── webhook_in_metal3clusters.yaml │ │ ├── webhook_in_metal3dataclaims.yaml │ │ ├── webhook_in_metal3datas.yaml │ │ ├── webhook_in_metal3datatemplates.yaml │ │ ├── webhook_in_metal3machines.yaml │ │ ├── webhook_in_metal3machinetemplates.yaml │ │ ├── webhook_in_metal3remediations.yaml │ │ └── webhook_in_metal3remediationtemplates.yaml ├── default │ ├── capm3 │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ ├── manager_image_patch.yaml │ │ ├── manager_pull_policy_patch.yaml │ │ ├── manager_webhook_patch.yaml │ │ ├── namespace.yaml │ │ └── webhookcainjection_patch.yaml │ └── kustomization.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── rbac │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml └── webhook │ ├── kustomization.yaml │ ├── manifests.yaml │ └── service.yaml ├── controllers ├── metal3cluster_controller.go ├── metal3cluster_controller_integration_test.go ├── metal3cluster_controller_test.go ├── metal3data_controller.go ├── metal3data_controller_test.go ├── metal3datatemplate_controller.go ├── metal3datatemplate_controller_test.go ├── metal3labelsync_controller.go ├── metal3labelsync_controller_test.go ├── metal3machine_controller.go ├── metal3machine_controller_integration_test.go ├── metal3machine_controller_test.go ├── metal3machinetemplate_controller.go ├── metal3machinetemplate_controller_test.go ├── metal3remediation_controller.go ├── metal3remediation_controller_test.go └── suite_test.go ├── docs ├── api.md ├── architecture.md ├── deployment_workflow.md ├── dev-setup.md ├── disk_cleaning.md ├── e2e-test.md ├── getting-started.md ├── images │ ├── components.png │ ├── controllerssequencediagram.png │ └── fields_mapping.png ├── ip_reuse.md ├── releasing.md ├── remediation-controller.md └── testing.md ├── examples ├── addons.yaml ├── cluster │ ├── cluster.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── clusterctl-templates │ ├── clusterctl-cluster.yaml │ └── example_variables.rc ├── controlplane │ ├── controlplane.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── generate.sh ├── machinedeployment │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── machinedeployment.yaml ├── metal3crds │ ├── kustomization.yaml │ └── metal3.io_baremetalhosts.yaml ├── metal3plane │ ├── hosts.yaml │ └── kustomization.yaml ├── provider-components │ ├── image_versions_patch.yaml │ ├── kustomization.yaml │ └── manager_tolerations_patch.yaml └── templates │ ├── cluster.yaml │ └── clusterclass.yaml ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── boilerplate │ ├── BUILD │ ├── boilerplate.Dockerfile.txt │ ├── boilerplate.Makefile.txt │ ├── boilerplate.bzl.txt │ ├── boilerplate.generatebzl.txt │ ├── boilerplate.generatego.txt │ ├── boilerplate.go.txt │ ├── boilerplate.py │ ├── boilerplate.py.txt │ ├── boilerplate.sh.txt │ ├── boilerplate_test.py │ └── test │ │ ├── BUILD │ │ ├── fail.go │ │ ├── fail.py │ │ ├── pass.go │ │ └── pass.py ├── build.sh ├── codegen.sh ├── ensure-go.sh ├── ensure-golangci-lint.sh ├── ensure-kind.sh ├── ensure-kubectl.sh ├── fake-apiserver │ ├── Dockerfile │ ├── README.md │ ├── cmd │ │ ├── metal3-fkas-reconciler │ │ │ └── main.go │ │ └── metal3-fkas │ │ │ ├── main.go │ │ │ └── utils.go │ ├── go.mod │ ├── go.sum │ └── k8s │ │ ├── metal3-fkas-system.yaml │ │ └── metal3-fkas.yaml ├── gen_tilt_settings.sh ├── gomod.sh ├── kind_with_registry.sh ├── kustomize-sub.sh ├── manifestlint.sh ├── markdownlint.sh ├── shellcheck.sh ├── tools │ ├── go.mod │ ├── go.sum │ ├── install_kubebuilder.sh │ ├── release │ │ └── notes.go │ ├── remove_sec_ctx.py │ └── tools.go ├── unit.sh ├── verify-boilerplate.sh └── verify-release.sh ├── internal └── webhooks │ └── v1beta1 │ ├── doc.go │ ├── metal3cluster_webhook.go │ ├── metal3cluster_webhook_test.go │ ├── metal3clustertemplate_webhook.go │ ├── metal3clustertemplate_webhook_test.go │ ├── metal3data_webhook.go │ ├── metal3data_webhook_test.go │ ├── metal3dataclaim_webhook.go │ ├── metal3dataclaim_webhook_test.go │ ├── metal3datatemplate_webhook.go │ ├── metal3datatemplate_webhook_test.go │ ├── metal3machine_webhook.go │ ├── metal3machine_webhook_test.go │ ├── metal3machinetemplate_webhook.go │ ├── metal3machinetemplate_webhook_test.go │ ├── metal3remediation_webhook.go │ ├── metal3remediation_webhook_test.go │ ├── metal3remediationtemplate_webhook.go │ └── metal3remediationtemplate_webhook_test.go ├── main.go ├── metadata.yaml ├── releasenotes ├── v1.10.0-beta.0.md ├── v1.10.0.md ├── v1.10.1.md ├── v1.10.2.md ├── v1.10.3.md ├── v1.10.4.md ├── v1.11.0-alpha.0.md ├── v1.11.0-rc.0.md ├── v1.11.0.md ├── v1.11.1.md ├── v1.11.2.md ├── v1.12.0-beta.0.md ├── v1.8.4.md ├── v1.8.5.md ├── v1.8.6.md ├── v1.9.2.md ├── v1.9.3.md ├── v1.9.4.md └── v1.9.5.md ├── scripts ├── ci-e2e.sh ├── environment.sh └── fetch_manifests.sh ├── template └── sarif.tpl ├── test ├── README.md ├── e2e │ ├── basic_integration_test.go │ ├── cert_rotation.go │ ├── common.go │ ├── config │ │ └── e2e_conf.yaml │ ├── data │ │ ├── .gitignore │ │ ├── bmo-deployment │ │ │ ├── components │ │ │ │ ├── basic-auth │ │ │ │ │ ├── credentials_patch.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── tls │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── tls_ca_patch.yaml │ │ │ └── overlays │ │ │ │ ├── pr-test │ │ │ │ ├── ironic.env │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-0.10 │ │ │ │ ├── ironic.env │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-0.11 │ │ │ │ ├── ironic.env │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-0.9 │ │ │ │ ├── ironic.env │ │ │ │ └── kustomization.yaml │ │ │ │ └── release-latest │ │ │ │ ├── ironic.env │ │ │ │ └── kustomization.yaml │ │ ├── cert-manager-test │ │ │ ├── certificate.yaml │ │ │ ├── issuer.yaml │ │ │ ├── kustomization.yaml │ │ │ └── namespace.yaml │ │ ├── fkas │ │ │ ├── kustomization.yaml │ │ │ └── resources.yaml │ │ ├── infrastructure-metal3 │ │ │ ├── main │ │ │ │ ├── bases │ │ │ │ │ ├── centos-kubeadm-config │ │ │ │ │ │ ├── centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster-with-topology │ │ │ │ │ │ ├── cluster-with-topology.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-centos-kubeadm-config │ │ │ │ │ │ ├── clusterclass-centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass-cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config │ │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass │ │ │ │ │ │ ├── clusterclass.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── ippool │ │ │ │ │ │ ├── ippool.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── opensuse-leap-kubeadm-config │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── opensuse-leap-kubeadm-config.yaml │ │ │ │ │ └── ubuntu-kubeadm-config │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── ubuntu-kubeadm-config.yaml │ │ │ │ ├── cluster-template-centos-fake │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-centos-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-centos-md-taints │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── md-taints.yaml │ │ │ │ ├── cluster-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-opensuse-leap │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-ubuntu-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-ubuntu-md-taints │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── md-taints.yaml │ │ │ │ ├── cluster-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-metal3 │ │ │ │ │ ├── clusterclass-metal3.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── clusterclass │ │ │ │ │ └── kustomization.yaml │ │ │ ├── v1.10 │ │ │ │ ├── bases │ │ │ │ │ ├── centos-kubeadm-config │ │ │ │ │ │ ├── centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster-with-topology │ │ │ │ │ │ ├── cluster-with-topology.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-centos-kubeadm-config │ │ │ │ │ │ ├── clusterclass-centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass-cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config │ │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass │ │ │ │ │ │ ├── clusterclass.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── ippool │ │ │ │ │ │ ├── ippool.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ └── ubuntu-kubeadm-config │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── ubuntu-kubeadm-config.yaml │ │ │ │ ├── cluster-template-centos-fake │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-centos-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-ubuntu-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-metal3 │ │ │ │ │ ├── clusterclass-metal3.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── clusterclass │ │ │ │ │ └── kustomization.yaml │ │ │ ├── v1.11 │ │ │ │ ├── bases │ │ │ │ │ ├── centos-kubeadm-config │ │ │ │ │ │ ├── centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster-with-topology │ │ │ │ │ │ ├── cluster-with-topology.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-centos-kubeadm-config │ │ │ │ │ │ ├── clusterclass-centos-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass-cluster │ │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ │ ├── crs.yaml │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── md.yaml │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config │ │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── clusterclass │ │ │ │ │ │ ├── clusterclass.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── ippool │ │ │ │ │ │ ├── ippool.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── opensuse-leap-kubeadm-config │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── opensuse-leap-kubeadm-config.yaml │ │ │ │ │ └── ubuntu-kubeadm-config │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── ubuntu-kubeadm-config.yaml │ │ │ │ ├── cluster-template-centos-fake │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-centos-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-opensuse-leap │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-ubuntu-md-remediation │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── md.yaml │ │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-metal3 │ │ │ │ │ ├── clusterclass-metal3.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-centos │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-ubuntu │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-upgrade-workload │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── clusterclass │ │ │ │ │ └── kustomization.yaml │ │ │ └── v1.9 │ │ │ │ ├── bases │ │ │ │ ├── centos-kubeadm-config │ │ │ │ │ ├── centos-kubeadm-config.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-with-topology │ │ │ │ │ ├── cluster-with-topology.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ ├── crs.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── md.yaml │ │ │ │ ├── clusterclass-centos-kubeadm-config │ │ │ │ │ ├── clusterclass-centos-kubeadm-config.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-cluster │ │ │ │ │ ├── cluster-with-kcp.yaml │ │ │ │ │ ├── crs.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── md.yaml │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config │ │ │ │ │ ├── clusterclass-ubuntu-kubeadm-config.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass │ │ │ │ │ ├── clusterclass.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── ippool │ │ │ │ │ ├── ippool.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── ubuntu-kubeadm-config │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── ubuntu-kubeadm-config.yaml │ │ │ │ ├── cluster-template-centos-fake │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-centos-md-remediation │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── md.yaml │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-centos │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-ubuntu-md-remediation │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── md.yaml │ │ │ │ └── mhc.yaml │ │ │ │ ├── cluster-template-ubuntu │ │ │ │ └── kustomization.yaml │ │ │ │ ├── cluster-template-upgrade-workload │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-metal3 │ │ │ │ ├── clusterclass-metal3.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-centos │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-ubuntu │ │ │ │ └── kustomization.yaml │ │ │ │ ├── clusterclass-template-upgrade-workload │ │ │ │ └── kustomization.yaml │ │ │ │ └── clusterclass │ │ │ │ └── kustomization.yaml │ │ ├── ironic-deployment │ │ │ ├── components │ │ │ │ └── basic-auth │ │ │ │ │ ├── auth.yaml │ │ │ │ │ ├── ironic-auth-config-tpl │ │ │ │ │ └── kustomization.yaml │ │ │ └── overlays │ │ │ │ ├── pr-test │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-27.0 │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-29.0 │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-31.0 │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ ├── release-32.0 │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ └── release-latest │ │ │ │ ├── ironic_bmo_configmap.env │ │ │ │ ├── keepalived_patch.yaml │ │ │ │ └── kustomization.yaml │ │ ├── kubetest │ │ │ └── conformance.yaml │ │ └── shared │ │ │ ├── capi │ │ │ ├── v1.10 │ │ │ │ └── metadata.yaml │ │ │ ├── v1.11 │ │ │ │ └── metadata.yaml │ │ │ ├── v1.12 │ │ │ │ └── metadata.yaml │ │ │ └── v1.9 │ │ │ │ └── metadata.yaml │ │ │ ├── infrastructure-metal3 │ │ │ ├── main │ │ │ │ └── metadata.yaml │ │ │ ├── v1.10 │ │ │ │ └── metadata.yaml │ │ │ ├── v1.11 │ │ │ │ └── metadata.yaml │ │ │ └── v1.9 │ │ │ │ └── metadata.yaml │ │ │ └── ipam-metal3 │ │ │ ├── v1.10 │ │ │ └── metadata.yaml │ │ │ ├── v1.11 │ │ │ └── metadata.yaml │ │ │ └── v1.12 │ │ │ └── metadata.yaml │ ├── e2e_suite_test.go │ ├── healthcheck.go │ ├── helm_helper.go │ ├── inspection.go │ ├── integration_test.go │ ├── ip_reuse.go │ ├── ip_reuse_test.go │ ├── k8s_conformance_test.go │ ├── logcollector.go │ ├── md_remediations_test.go │ ├── md_rollout_test.go │ ├── md_scale_test.go │ ├── node_deletion_remediation.go │ ├── node_reuse.go │ ├── pivoting.go │ ├── pivoting_based_feature_test.go │ ├── remediation.go │ ├── remediation_based_feature_test.go │ ├── scalability_test.go │ ├── upgrade_clusterctl_test.go │ ├── upgrade_kubernetes_test.go │ └── yaml.go ├── go.mod └── go.sum └── tilt-provider.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/failing-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/ISSUE_TEMPLATE/failing-test.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/flaking-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/ISSUE_TEMPLATE/flaking-test.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-fkas-images-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/build-fkas-images-action.yml -------------------------------------------------------------------------------- /.github/workflows/build-images-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/build-images-action.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-gh-workflow-approve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/pr-gh-workflow-approve.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/pr-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-verifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/pr-verifier.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/scheduled-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.github/workflows/yamllint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/Tiltfile -------------------------------------------------------------------------------- /api/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/go.mod -------------------------------------------------------------------------------- /api/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/go.sum -------------------------------------------------------------------------------- /api/v1beta1/common_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/common_types.go -------------------------------------------------------------------------------- /api/v1beta1/common_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/common_types_test.go -------------------------------------------------------------------------------- /api/v1beta1/condition_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/condition_consts.go -------------------------------------------------------------------------------- /api/v1beta1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/conversion.go -------------------------------------------------------------------------------- /api/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/doc.go -------------------------------------------------------------------------------- /api/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta1/metal3cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3cluster_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3cluster_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3cluster_types_test.go -------------------------------------------------------------------------------- /api/v1beta1/metal3clustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3clustertemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3data_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3data_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3dataclaim_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3dataclaim_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3datatemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3datatemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3machine_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3machine_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3machine_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3machine_types_test.go -------------------------------------------------------------------------------- /api/v1beta1/metal3machinetemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3machinetemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3remediation_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3remediation_types.go -------------------------------------------------------------------------------- /api/v1beta1/metal3remediationtemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/metal3remediationtemplate_types.go -------------------------------------------------------------------------------- /api/v1beta1/v1beta1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/v1beta1_suite_test.go -------------------------------------------------------------------------------- /api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /baremetal/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/manager_factory.go -------------------------------------------------------------------------------- /baremetal/manager_factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/manager_factory_test.go -------------------------------------------------------------------------------- /baremetal/metal3cluster_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3cluster_manager.go -------------------------------------------------------------------------------- /baremetal/metal3cluster_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3cluster_manager_test.go -------------------------------------------------------------------------------- /baremetal/metal3data_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3data_manager.go -------------------------------------------------------------------------------- /baremetal/metal3data_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3data_manager_test.go -------------------------------------------------------------------------------- /baremetal/metal3datatemplate_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3datatemplate_manager.go -------------------------------------------------------------------------------- /baremetal/metal3datatemplate_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3datatemplate_manager_test.go -------------------------------------------------------------------------------- /baremetal/metal3machine_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3machine_manager.go -------------------------------------------------------------------------------- /baremetal/metal3machine_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3machine_manager_test.go -------------------------------------------------------------------------------- /baremetal/metal3machinetemplate_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3machinetemplate_manager.go -------------------------------------------------------------------------------- /baremetal/metal3machinetemplate_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3machinetemplate_manager_test.go -------------------------------------------------------------------------------- /baremetal/metal3remediation_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3remediation_manager.go -------------------------------------------------------------------------------- /baremetal/metal3remediation_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/metal3remediation_manager_test.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.manager_factory.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3cluster_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3cluster_manager.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3data_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3data_manager.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3datatemplate_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3datatemplate_manager.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3machine_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3machine_manager.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3machinetemplate_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3machinetemplate_manager.go -------------------------------------------------------------------------------- /baremetal/mocks/zz_generated.metal3remediation_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/mocks/zz_generated.metal3remediation_manager.go -------------------------------------------------------------------------------- /baremetal/reconcile_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/reconcile_error.go -------------------------------------------------------------------------------- /baremetal/reconcile_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/reconcile_error_test.go -------------------------------------------------------------------------------- /baremetal/remote/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/remote/remote.go -------------------------------------------------------------------------------- /baremetal/remote/remote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/remote/remote_test.go -------------------------------------------------------------------------------- /baremetal/remote/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/remote/suite_test.go -------------------------------------------------------------------------------- /baremetal/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/suite_test.go -------------------------------------------------------------------------------- /baremetal/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/utils.go -------------------------------------------------------------------------------- /baremetal/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/baremetal/utils_test.go -------------------------------------------------------------------------------- /clusterctl-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/clusterctl-settings.json -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3clusters.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3clustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3clustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3dataclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3dataclaims.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3datas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3datas.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3datatemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3datatemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3machines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3machines.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3machinetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3machinetemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3remediations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3remediations.yaml -------------------------------------------------------------------------------- /config/crd/bases/infrastructure.cluster.x-k8s.io_metal3remediationtemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/bases/infrastructure.cluster.x-k8s.io_metal3remediationtemplates.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3clusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3dataclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3dataclaims.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3datas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3datas.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3datatemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3datatemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3machines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3machines.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3machinetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3machinetemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3remediations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3remediations.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_metal3remediationtemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/cainjection_in_metal3remediationtemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/skipcrdnamecheck_in_metal3datas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/skipcrdnamecheck_in_metal3datas.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3clusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3dataclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3dataclaims.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3datas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3datas.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3datatemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3datatemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3machines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3machines.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3machinetemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3machinetemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3remediations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3remediations.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_metal3remediationtemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/crd/patches/webhook_in_metal3remediationtemplates.yaml -------------------------------------------------------------------------------- /config/default/capm3/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/kustomization.yaml -------------------------------------------------------------------------------- /config/default/capm3/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/default/capm3/manager_image_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/manager_image_patch.yaml -------------------------------------------------------------------------------- /config/default/capm3/manager_pull_policy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/manager_pull_policy_patch.yaml -------------------------------------------------------------------------------- /config/default/capm3/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/capm3/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/namespace.yaml -------------------------------------------------------------------------------- /config/default/capm3/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/capm3/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/metal3cluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3cluster_controller.go -------------------------------------------------------------------------------- /controllers/metal3cluster_controller_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3cluster_controller_integration_test.go -------------------------------------------------------------------------------- /controllers/metal3cluster_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3cluster_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3data_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3data_controller.go -------------------------------------------------------------------------------- /controllers/metal3data_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3data_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3datatemplate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3datatemplate_controller.go -------------------------------------------------------------------------------- /controllers/metal3datatemplate_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3datatemplate_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3labelsync_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3labelsync_controller.go -------------------------------------------------------------------------------- /controllers/metal3labelsync_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3labelsync_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3machine_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3machine_controller.go -------------------------------------------------------------------------------- /controllers/metal3machine_controller_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3machine_controller_integration_test.go -------------------------------------------------------------------------------- /controllers/metal3machine_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3machine_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3machinetemplate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3machinetemplate_controller.go -------------------------------------------------------------------------------- /controllers/metal3machinetemplate_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3machinetemplate_controller_test.go -------------------------------------------------------------------------------- /controllers/metal3remediation_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3remediation_controller.go -------------------------------------------------------------------------------- /controllers/metal3remediation_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/metal3remediation_controller_test.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/deployment_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/deployment_workflow.md -------------------------------------------------------------------------------- /docs/dev-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/dev-setup.md -------------------------------------------------------------------------------- /docs/disk_cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/disk_cleaning.md -------------------------------------------------------------------------------- /docs/e2e-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/e2e-test.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/images/components.png -------------------------------------------------------------------------------- /docs/images/controllerssequencediagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/images/controllerssequencediagram.png -------------------------------------------------------------------------------- /docs/images/fields_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/images/fields_mapping.png -------------------------------------------------------------------------------- /docs/ip_reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/ip_reuse.md -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /docs/remediation-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/remediation-controller.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/docs/testing.md -------------------------------------------------------------------------------- /examples/addons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/addons.yaml -------------------------------------------------------------------------------- /examples/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/cluster/cluster.yaml -------------------------------------------------------------------------------- /examples/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/cluster/kustomization.yaml -------------------------------------------------------------------------------- /examples/cluster/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/cluster/kustomizeconfig.yaml -------------------------------------------------------------------------------- /examples/clusterctl-templates/clusterctl-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/clusterctl-templates/clusterctl-cluster.yaml -------------------------------------------------------------------------------- /examples/clusterctl-templates/example_variables.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/clusterctl-templates/example_variables.rc -------------------------------------------------------------------------------- /examples/controlplane/controlplane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/controlplane/controlplane.yaml -------------------------------------------------------------------------------- /examples/controlplane/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/controlplane/kustomization.yaml -------------------------------------------------------------------------------- /examples/controlplane/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/controlplane/kustomizeconfig.yaml -------------------------------------------------------------------------------- /examples/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/generate.sh -------------------------------------------------------------------------------- /examples/machinedeployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/machinedeployment/kustomization.yaml -------------------------------------------------------------------------------- /examples/machinedeployment/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/machinedeployment/kustomizeconfig.yaml -------------------------------------------------------------------------------- /examples/machinedeployment/machinedeployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/machinedeployment/machinedeployment.yaml -------------------------------------------------------------------------------- /examples/metal3crds/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/metal3crds/kustomization.yaml -------------------------------------------------------------------------------- /examples/metal3crds/metal3.io_baremetalhosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/metal3crds/metal3.io_baremetalhosts.yaml -------------------------------------------------------------------------------- /examples/metal3plane/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/metal3plane/hosts.yaml -------------------------------------------------------------------------------- /examples/metal3plane/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/metal3plane/kustomization.yaml -------------------------------------------------------------------------------- /examples/provider-components/image_versions_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/provider-components/image_versions_patch.yaml -------------------------------------------------------------------------------- /examples/provider-components/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/provider-components/kustomization.yaml -------------------------------------------------------------------------------- /examples/provider-components/manager_tolerations_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/provider-components/manager_tolerations_patch.yaml -------------------------------------------------------------------------------- /examples/templates/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/templates/cluster.yaml -------------------------------------------------------------------------------- /examples/templates/clusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/examples/templates/clusterclass.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/boilerplate/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/BUILD -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.Dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.Dockerfile.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.Makefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.Makefile.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.bzl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.bzl.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.generatebzl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.generatebzl.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.generatego.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.generatego.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.py -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.py.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate.sh.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/boilerplate_test.py -------------------------------------------------------------------------------- /hack/boilerplate/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/test/BUILD -------------------------------------------------------------------------------- /hack/boilerplate/test/fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/test/fail.go -------------------------------------------------------------------------------- /hack/boilerplate/test/fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/test/fail.py -------------------------------------------------------------------------------- /hack/boilerplate/test/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/test/pass.go -------------------------------------------------------------------------------- /hack/boilerplate/test/pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/boilerplate/test/pass.py -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/codegen.sh -------------------------------------------------------------------------------- /hack/ensure-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/ensure-go.sh -------------------------------------------------------------------------------- /hack/ensure-golangci-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/ensure-golangci-lint.sh -------------------------------------------------------------------------------- /hack/ensure-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/ensure-kind.sh -------------------------------------------------------------------------------- /hack/ensure-kubectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/ensure-kubectl.sh -------------------------------------------------------------------------------- /hack/fake-apiserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/Dockerfile -------------------------------------------------------------------------------- /hack/fake-apiserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/README.md -------------------------------------------------------------------------------- /hack/fake-apiserver/cmd/metal3-fkas-reconciler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/cmd/metal3-fkas-reconciler/main.go -------------------------------------------------------------------------------- /hack/fake-apiserver/cmd/metal3-fkas/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/cmd/metal3-fkas/main.go -------------------------------------------------------------------------------- /hack/fake-apiserver/cmd/metal3-fkas/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/cmd/metal3-fkas/utils.go -------------------------------------------------------------------------------- /hack/fake-apiserver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/go.mod -------------------------------------------------------------------------------- /hack/fake-apiserver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/go.sum -------------------------------------------------------------------------------- /hack/fake-apiserver/k8s/metal3-fkas-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/k8s/metal3-fkas-system.yaml -------------------------------------------------------------------------------- /hack/fake-apiserver/k8s/metal3-fkas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/fake-apiserver/k8s/metal3-fkas.yaml -------------------------------------------------------------------------------- /hack/gen_tilt_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/gen_tilt_settings.sh -------------------------------------------------------------------------------- /hack/gomod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/gomod.sh -------------------------------------------------------------------------------- /hack/kind_with_registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/kind_with_registry.sh -------------------------------------------------------------------------------- /hack/kustomize-sub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/kustomize-sub.sh -------------------------------------------------------------------------------- /hack/manifestlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/manifestlint.sh -------------------------------------------------------------------------------- /hack/markdownlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/markdownlint.sh -------------------------------------------------------------------------------- /hack/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/shellcheck.sh -------------------------------------------------------------------------------- /hack/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/go.mod -------------------------------------------------------------------------------- /hack/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/go.sum -------------------------------------------------------------------------------- /hack/tools/install_kubebuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/install_kubebuilder.sh -------------------------------------------------------------------------------- /hack/tools/release/notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/release/notes.go -------------------------------------------------------------------------------- /hack/tools/remove_sec_ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/remove_sec_ctx.py -------------------------------------------------------------------------------- /hack/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/tools/tools.go -------------------------------------------------------------------------------- /hack/unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/unit.sh -------------------------------------------------------------------------------- /hack/verify-boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/verify-boilerplate.sh -------------------------------------------------------------------------------- /hack/verify-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/hack/verify-release.sh -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/doc.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3cluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3cluster_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3cluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3cluster_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3clustertemplate_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3clustertemplate_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3clustertemplate_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3clustertemplate_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3data_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3data_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3data_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3data_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3dataclaim_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3dataclaim_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3dataclaim_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3dataclaim_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3datatemplate_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3datatemplate_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3datatemplate_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3datatemplate_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3machine_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3machine_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3machine_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3machine_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3machinetemplate_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3machinetemplate_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3machinetemplate_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3machinetemplate_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3remediation_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3remediation_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3remediation_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3remediation_webhook_test.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3remediationtemplate_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3remediationtemplate_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/v1beta1/metal3remediationtemplate_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/internal/webhooks/v1beta1/metal3remediationtemplate_webhook_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/main.go -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/metadata.yaml -------------------------------------------------------------------------------- /releasenotes/v1.10.0-beta.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.0-beta.0.md -------------------------------------------------------------------------------- /releasenotes/v1.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.0.md -------------------------------------------------------------------------------- /releasenotes/v1.10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.1.md -------------------------------------------------------------------------------- /releasenotes/v1.10.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.2.md -------------------------------------------------------------------------------- /releasenotes/v1.10.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.3.md -------------------------------------------------------------------------------- /releasenotes/v1.10.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.10.4.md -------------------------------------------------------------------------------- /releasenotes/v1.11.0-alpha.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.11.0-alpha.0.md -------------------------------------------------------------------------------- /releasenotes/v1.11.0-rc.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.11.0-rc.0.md -------------------------------------------------------------------------------- /releasenotes/v1.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.11.0.md -------------------------------------------------------------------------------- /releasenotes/v1.11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.11.1.md -------------------------------------------------------------------------------- /releasenotes/v1.11.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.11.2.md -------------------------------------------------------------------------------- /releasenotes/v1.12.0-beta.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.12.0-beta.0.md -------------------------------------------------------------------------------- /releasenotes/v1.8.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.8.4.md -------------------------------------------------------------------------------- /releasenotes/v1.8.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.8.5.md -------------------------------------------------------------------------------- /releasenotes/v1.8.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.8.6.md -------------------------------------------------------------------------------- /releasenotes/v1.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.9.2.md -------------------------------------------------------------------------------- /releasenotes/v1.9.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.9.3.md -------------------------------------------------------------------------------- /releasenotes/v1.9.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.9.4.md -------------------------------------------------------------------------------- /releasenotes/v1.9.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/releasenotes/v1.9.5.md -------------------------------------------------------------------------------- /scripts/ci-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/scripts/ci-e2e.sh -------------------------------------------------------------------------------- /scripts/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/scripts/environment.sh -------------------------------------------------------------------------------- /scripts/fetch_manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/scripts/fetch_manifests.sh -------------------------------------------------------------------------------- /template/sarif.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/template/sarif.tpl -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/README.md -------------------------------------------------------------------------------- /test/e2e/basic_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/basic_integration_test.go -------------------------------------------------------------------------------- /test/e2e/cert_rotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/cert_rotation.go -------------------------------------------------------------------------------- /test/e2e/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/common.go -------------------------------------------------------------------------------- /test/e2e/config/e2e_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/config/e2e_conf.yaml -------------------------------------------------------------------------------- /test/e2e/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/.gitignore -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/components/basic-auth/credentials_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/components/basic-auth/credentials_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/components/basic-auth/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/components/basic-auth/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/components/tls/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/components/tls/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/components/tls/tls_ca_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/components/tls/tls_ca_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/pr-test/ironic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/pr-test/ironic.env -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/pr-test/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/pr-test/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.10/ironic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.10/ironic.env -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.10/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.10/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.11/ironic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.11/ironic.env -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.11/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.11/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.9/ironic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.9/ironic.env -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-0.9/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-0.9/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-latest/ironic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-latest/ironic.env -------------------------------------------------------------------------------- /test/e2e/data/bmo-deployment/overlays/release-latest/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/bmo-deployment/overlays/release-latest/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/cert-manager-test/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/cert-manager-test/certificate.yaml -------------------------------------------------------------------------------- /test/e2e/data/cert-manager-test/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/cert-manager-test/issuer.yaml -------------------------------------------------------------------------------- /test/e2e/data/cert-manager-test/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/cert-manager-test/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/cert-manager-test/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test 5 | -------------------------------------------------------------------------------- /test/e2e/data/fkas/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/fkas/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/fkas/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/fkas/resources.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/centos-kubeadm-config/centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/centos-kubeadm-config/centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster-with-topology/cluster-with-topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/cluster-with-topology/cluster-with-topology.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster-with-topology/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cluster-with-topology.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass/clusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/clusterclass/clusterclass.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/ippool/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/ippool/ippool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/ippool/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ippool.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/opensuse-leap-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/opensuse-leap-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/opensuse-leap-kubeadm-config/opensuse-leap-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/opensuse-leap-kubeadm-config/opensuse-leap-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-fake/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/cluster-with-topology 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-taints/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-taints/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-taints/md-taints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos-md-taints/md-taints.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-opensuse-leap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-opensuse-leap/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-taints/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-taints/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-taints/md-taints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu-md-taints/md-taints.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/cluster-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/cluster-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass-metal3/clusterclass-metal3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/clusterclass-metal3/clusterclass-metal3.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass-metal3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass-metal3.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/clusterclass-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/main/clusterclass-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass-ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/main/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/centos-kubeadm-config/centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/centos-kubeadm-config/centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster-with-topology/cluster-with-topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/cluster-with-topology/cluster-with-topology.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster-with-topology/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cluster-with-topology.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass/clusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass/clusterclass.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/ippool/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/ippool/ippool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/ippool/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ippool.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-fake/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/cluster-with-topology 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/cluster-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/cluster-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass-metal3/clusterclass-metal3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/clusterclass-metal3/clusterclass-metal3.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass-metal3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass-metal3.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/clusterclass-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.10/clusterclass-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass-ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.10/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/centos-kubeadm-config/centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/centos-kubeadm-config/centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster-with-topology/cluster-with-topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/cluster-with-topology/cluster-with-topology.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster-with-topology/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cluster-with-topology.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass/clusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass/clusterclass.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/ippool/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/ippool/ippool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/ippool/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ippool.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/opensuse-leap-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/opensuse-leap-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/opensuse-leap-kubeadm-config/opensuse-leap-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/opensuse-leap-kubeadm-config/opensuse-leap-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-fake/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/cluster-with-topology 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-opensuse-leap/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-opensuse-leap/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/cluster-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/cluster-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass-metal3/clusterclass-metal3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/clusterclass-metal3/clusterclass-metal3.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass-metal3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass-metal3.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/clusterclass-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.11/clusterclass-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass-ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.11/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/centos-kubeadm-config/centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/centos-kubeadm-config/centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster-with-topology/cluster-with-topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/cluster-with-topology/cluster-with-topology.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster-with-topology/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cluster-with-topology.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-centos-kubeadm-config/clusterclass-centos-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-centos-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-centos-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/cluster-with-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/cluster-with-kcp.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/crs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/crs.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-cluster/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-ubuntu-kubeadm-config/clusterclass-ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass-ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass/clusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass/clusterclass.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/ippool/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/ippool/ippool.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/ippool/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ippool.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/ubuntu-kubeadm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/ubuntu-kubeadm-config/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/bases/ubuntu-kubeadm-config/ubuntu-kubeadm-config.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-fake/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/cluster-with-topology 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/md.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/mhc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu-md-remediation/mhc.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/cluster-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/cluster-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass-metal3/clusterclass-metal3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/clusterclass-metal3/clusterclass-metal3.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass-metal3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - clusterclass-metal3.yaml 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass-template-centos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/clusterclass-template-centos/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass-template-ubuntu/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/infrastructure-metal3/v1.9/clusterclass-template-ubuntu/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass-template-upgrade-workload/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass-ubuntu-kubeadm-config 3 | -------------------------------------------------------------------------------- /test/e2e/data/infrastructure-metal3/v1.9/clusterclass/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - ../bases/clusterclass 3 | -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/components/basic-auth/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/components/basic-auth/auth.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/components/basic-auth/ironic-auth-config-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/components/basic-auth/ironic-auth-config-tpl -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/components/basic-auth/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/components/basic-auth/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/pr-test/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/pr-test/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/pr-test/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/pr-test/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/pr-test/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/pr-test/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-27.0/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-27.0/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-27.0/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-27.0/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-27.0/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-27.0/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-29.0/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-29.0/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-29.0/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-29.0/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-29.0/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-29.0/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-31.0/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-31.0/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-31.0/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-31.0/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-31.0/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-31.0/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-32.0/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-32.0/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-32.0/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-32.0/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-32.0/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-32.0/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-latest/ironic_bmo_configmap.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-latest/ironic_bmo_configmap.env -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-latest/keepalived_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-latest/keepalived_patch.yaml -------------------------------------------------------------------------------- /test/e2e/data/ironic-deployment/overlays/release-latest/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/ironic-deployment/overlays/release-latest/kustomization.yaml -------------------------------------------------------------------------------- /test/e2e/data/kubetest/conformance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/kubetest/conformance.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/capi/v1.10/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/capi/v1.10/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/capi/v1.11/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/capi/v1.11/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/capi/v1.12/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/capi/v1.12/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/capi/v1.9/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/capi/v1.9/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/infrastructure-metal3/main/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/infrastructure-metal3/main/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/infrastructure-metal3/v1.10/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/infrastructure-metal3/v1.10/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/infrastructure-metal3/v1.11/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/infrastructure-metal3/v1.11/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/infrastructure-metal3/v1.9/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/infrastructure-metal3/v1.9/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/ipam-metal3/v1.10/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/ipam-metal3/v1.10/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/ipam-metal3/v1.11/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/ipam-metal3/v1.11/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/data/shared/ipam-metal3/v1.12/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/data/shared/ipam-metal3/v1.12/metadata.yaml -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/healthcheck.go -------------------------------------------------------------------------------- /test/e2e/helm_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/helm_helper.go -------------------------------------------------------------------------------- /test/e2e/inspection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/inspection.go -------------------------------------------------------------------------------- /test/e2e/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/integration_test.go -------------------------------------------------------------------------------- /test/e2e/ip_reuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/ip_reuse.go -------------------------------------------------------------------------------- /test/e2e/ip_reuse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/ip_reuse_test.go -------------------------------------------------------------------------------- /test/e2e/k8s_conformance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/k8s_conformance_test.go -------------------------------------------------------------------------------- /test/e2e/logcollector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/logcollector.go -------------------------------------------------------------------------------- /test/e2e/md_remediations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/md_remediations_test.go -------------------------------------------------------------------------------- /test/e2e/md_rollout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/md_rollout_test.go -------------------------------------------------------------------------------- /test/e2e/md_scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/md_scale_test.go -------------------------------------------------------------------------------- /test/e2e/node_deletion_remediation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/node_deletion_remediation.go -------------------------------------------------------------------------------- /test/e2e/node_reuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/node_reuse.go -------------------------------------------------------------------------------- /test/e2e/pivoting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/pivoting.go -------------------------------------------------------------------------------- /test/e2e/pivoting_based_feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/pivoting_based_feature_test.go -------------------------------------------------------------------------------- /test/e2e/remediation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/remediation.go -------------------------------------------------------------------------------- /test/e2e/remediation_based_feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/remediation_based_feature_test.go -------------------------------------------------------------------------------- /test/e2e/scalability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/scalability_test.go -------------------------------------------------------------------------------- /test/e2e/upgrade_clusterctl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/upgrade_clusterctl_test.go -------------------------------------------------------------------------------- /test/e2e/upgrade_kubernetes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/upgrade_kubernetes_test.go -------------------------------------------------------------------------------- /test/e2e/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/e2e/yaml.go -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/test/go.sum -------------------------------------------------------------------------------- /tilt-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metal3-io/cluster-api-provider-metal3/HEAD/tilt-provider.json --------------------------------------------------------------------------------