-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3107 from sbueringer/pr-bump-CAPI
✨ Bump CAPI to v1.8.0-beta.0
- Loading branch information
Showing
9 changed files
with
79 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,17 @@ providers: | |
- name: cluster-api | ||
type: CoreProvider | ||
versions: | ||
- name: "v1.8.0" # supported release in the v1beta1 series | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.8.0-beta.0/core-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
- sourcePath: "../data/shared/capi/v1.8/metadata.yaml" | ||
replacements: | ||
- old: "imagePullPolicy: Always" | ||
new: "imagePullPolicy: IfNotPresent" | ||
- name: "{go://sigs.k8s.io/[email protected]}" # supported release in the v1beta1 series | ||
value: "https://storage.googleapis.com/k8s-staging-cluster-api/components/nightly_main_20240701/core-components.yaml" # "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/core-components.yaml" | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/core-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
|
@@ -55,8 +64,17 @@ providers: | |
- name: kubeadm | ||
type: BootstrapProvider | ||
versions: | ||
- name: "v1.8.0" # supported release in the v1beta1 series | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.8.0-beta.0/bootstrap-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
- sourcePath: "../data/shared/capi/v1.8/metadata.yaml" | ||
replacements: | ||
- old: "imagePullPolicy: Always" | ||
new: "imagePullPolicy: IfNotPresent" | ||
- name: "{go://sigs.k8s.io/[email protected]}" # supported release in the v1beta1 series | ||
value: "https://storage.googleapis.com/k8s-staging-cluster-api/components/nightly_main_20240701/bootstrap-components.yaml" # "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/bootstrap-components.yaml" | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/bootstrap-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
|
@@ -86,8 +104,17 @@ providers: | |
- name: kubeadm | ||
type: ControlPlaneProvider | ||
versions: | ||
- name: "v1.8.0" # supported release in the v1beta1 series | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.8.0-beta.0/control-plane-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
- sourcePath: "../data/shared/capi/v1.8/metadata.yaml" | ||
replacements: | ||
- old: "imagePullPolicy: Always" | ||
new: "imagePullPolicy: IfNotPresent" | ||
- name: "{go://sigs.k8s.io/[email protected]}" # supported release in the v1beta1 series | ||
value: "https://storage.googleapis.com/k8s-staging-cluster-api/components/nightly_main_20240701/control-plane-components.yaml" # "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/control-plane-components.yaml" | ||
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/{go://sigs.k8s.io/[email protected]}/control-plane-components.yaml" | ||
type: "url" | ||
contract: v1beta1 | ||
files: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# maps release series of major.minor to cluster-api contract version | ||
# the contract version may change between minor or major versions, but *not* | ||
# between patch versions. | ||
# | ||
# update this file only when a new major or minor version is released | ||
apiVersion: clusterctl.cluster.x-k8s.io/v1alpha3 | ||
kind: Metadata | ||
releaseSeries: | ||
- major: 1 | ||
minor: 8 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 7 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 6 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 5 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 4 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 3 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 2 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 1 | ||
contract: v1beta1 | ||
- major: 1 | ||
minor: 0 | ||
contract: v1beta1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters