-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
134 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# :zap: Giant Swarm Release v27.0.1 for vSphere :zap: | ||
|
||
We are happy to announce the first release for vSphere that uses the new release framework. | ||
|
||
## Migration to new releases flow | ||
|
||
In order to consume the new flow, the following two fields need to be manually adapted: | ||
|
||
* In ConfigMap `<cluster name>-userconfig` set `.Values.global.release` to the release version, e.g. `27.0.1`. | ||
* In App `<cluster name>` remove the `spec.version` field. In case of GitOps, Flux might complain that the app manifest is invalid as the `spec.version` field is mandatory. In that case, edit the live App CR and set `spec.version` to an empty string. That will unblock Flux and allow it reconcile successfully. | ||
|
||
And if you want to use `kubectl-gs` to create a cluster, you'd need to now specify the release version, e.g.: | ||
|
||
```bash | ||
kubectl-gs template cluster --provider vsphere --organization my_org --name cluster_name -vsphere-network-name network_name --release v27.0.1 | ||
``` |
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,3 @@ | ||
**Workload cluster release v27.0.1 for vSphere is available**. This release upgrades Kubernetes to v1.27. | ||
|
||
Further details can be found in the [release notes](https://docs.giantswarm.io/changes/workload-cluster-releases-vsphere/releases/vsphere-27.0.1). |
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,2 @@ | ||
resources: | ||
- release.yaml |
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,104 @@ | ||
apiVersion: release.giantswarm.io/v1alpha1 | ||
kind: Release | ||
metadata: | ||
name: vsphere-27.0.1 | ||
spec: | ||
apps: | ||
- name: capi-node-labeler | ||
version: 0.5.0 | ||
- name: cert-exporter | ||
version: 2.9.1 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: cert-manager | ||
version: 3.8.1 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: chart-operator-extensions | ||
version: 1.1.2 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: cilium | ||
version: 0.25.1 | ||
- name: cilium-servicemonitors | ||
version: 0.1.2 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: cloud-provider-vsphere | ||
version: 1.11.0 | ||
dependsOn: | ||
- cilium | ||
- name: coredns | ||
version: 1.21.0 | ||
dependsOn: | ||
- cilium | ||
- name: etcd-k8s-res-count-exporter | ||
version: 1.10.0 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: external-dns | ||
version: 3.1.0 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: k8s-audit-metrics | ||
version: 0.10.0 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: k8s-dns-node-cache | ||
version: 2.8.1 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: metrics-server | ||
version: 2.4.2 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: net-exporter | ||
version: 1.21.0 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: network-policies | ||
catalog: cluster | ||
version: 0.1.1 | ||
dependsOn: | ||
- cilium | ||
- name: node-exporter | ||
version: 1.19.0 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: observability-bundle | ||
version: 1.5.3 | ||
dependsOn: | ||
- coredns | ||
- name: observability-policies | ||
version: 0.0.1 | ||
dependsOn: | ||
- kyverno-crds | ||
- name: prometheus-blackbox-exporter | ||
version: 0.4.2 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: security-bundle | ||
catalog: giantswarm | ||
version: 1.8.0 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: teleport-kube-agent | ||
version: 0.9.2 | ||
- name: vertical-pod-autoscaler | ||
version: 5.2.4 | ||
dependsOn: | ||
- prometheus-operator-crd | ||
- name: vertical-pod-autoscaler-crd | ||
version: 3.1.0 | ||
components: | ||
- name: cluster-vsphere | ||
catalog: cluster | ||
version: 0.65.1 | ||
- name: flatcar | ||
version: 3815.2.5 | ||
- name: kubernetes | ||
version: 1.27.16 | ||
- name: os-tooling | ||
version: 1.20.1 | ||
date: "2024-10-23T12:00:00Z" | ||
state: active |