Skip to content

Commit

Permalink
Merge pull request #19 from swade1987/steve.wade/upgrade-k8s-to-1.31.5
Browse files Browse the repository at this point in the history
feat: upgrading kubernetes to v1.31.5
  • Loading branch information
swade1987 authored Jan 31, 2025
2 parents 0e9750b + e804ee4 commit 490838a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '*'

env:
KUBERNETES_VERSION: 1.32.0
KUBERNETES_VERSION: 1.31.5

jobs:
build-and-push:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ jobs:
release:
name: release
runs-on: ubuntu-latest
outputs:
new_release_published: ${{ steps.release.outputs.new_release_published }}
new_release_version: ${{ steps.release.outputs.new_release_version }}
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:

env:
KUBERNETES_VERSION: 1.32.0
KUBERNETES_VERSION: 1.31.5

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJNAME := kubernetes-toolkit
KUBERNETES_VERSION := 1.32.0
KUBERNETES_VERSION := 1.31.5
GOOS ?= $(if $(TARGETOS),$(TARGETOS),linux)
GOARCH ?= $(if $(TARGETARCH),$(TARGETARCH),amd64)
BUILDPLATFORM ?= $(GOOS)/$(GOARCH)
Expand Down
2 changes: 1 addition & 1 deletion scripts/upgrade-k8s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ create_pull_request() {
gh pr create \
--title "$commit_message" \
--body "feat: updating kubernetes version to ${KUBERNETES_VERSION}." \
--base master \
--base main \
--head "$branch_name" || { log "ERROR" "Failed to create PR"; exit 1; }

log "SUCCESS" "Successfully created pull request for Kubernetes version upgrade"
Expand Down

0 comments on commit 490838a

Please sign in to comment.