Skip to content

Commit

Permalink
Update talos/kubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
choffmeister committed Sep 3, 2024
1 parent cd6cb4a commit cff3a6c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: false
matrix:
version:
- talos: 1.4.8
kubernetes: 1.27.6
- talos: 1.5.3
kubernetes: 1.28.2
- talos: 1.6.8
kubernetes: 1.29.8
- talos: 1.7.6
kubernetes: 1.30.4
steps:
- uses: actions/setup-go@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ cd my-cluster

export HCLOUD_TOKEN=...
# bootstrap cluster
hcloud-talos -v bootstrap-cluster --talos-version=1.5.3 --kubernetes-version=1.28.2 my-cluster controlplane-%id%
hcloud-talos -v bootstrap-cluster --talos-version=1.7.6 --kubernetes-version=1.30.4 my-cluster controlplane-%id%

# add more nodes
hcloud-talos -v add-node --talos-version=1.5.3 controlplane-%id% --controlplane
hcloud-talos -v add-node --talos-version=1.5.3 worker-%id%
hcloud-talos -v add-node --talos-version=1.7.6 controlplane-%id% --controlplane
hcloud-talos -v add-node --talos-version=1.7.6 worker-%id%
```
4 changes: 2 additions & 2 deletions e2etests/00_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestMain(t *testing.M) {
func setup() {
talosVersion = os.Getenv("TALOS_VERSION")
if talosVersion == "" {
talosVersion = "1.5.3"
talosVersion = "1.7.6"
}
talosctlUrl = fmt.Sprintf("https://github.com/siderolabs/talos/releases/download/v%s/talosctl-%s-%s", talosVersion, runtime.GOOS, runtime.GOARCH)
talosctlBin = path.Join(os.TempDir(), fmt.Sprintf("talosctl-%s", talosVersion))
Expand All @@ -51,7 +51,7 @@ func setup() {

kubernetesVersion = os.Getenv("KUBERNETES_VERSION")
if kubernetesVersion == "" {
kubernetesVersion = "1.28.2"
kubernetesVersion = "1.30.4"
}

hcloudToken = os.Getenv("HCLOUD_TOKEN")
Expand Down

0 comments on commit cff3a6c

Please sign in to comment.