Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: kots release failure #4750

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
needs: [get-workspace-name, get-workspace-expiration]
runs-on: ubuntu-20.04
container:
image: hashicorp/terraform:1.0.11
image: hashicorp/terraform:1.9
env:
WORKSPACE: ${{ needs.get-workspace-name.outputs.name }}
steps:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
needs: [get-workspace-name, get-workspace-expiration, jumpbox]
runs-on: ubuntu-20.04
container:
image: hashicorp/terraform:1.0.11
image: hashicorp/terraform:1.9
env:
WORKSPACE: ${{ needs.get-workspace-name.outputs.name }}
strategy:
Expand Down Expand Up @@ -269,6 +269,7 @@ jobs:
- name: Wait for instance to be ready
working-directory: automation/cluster
run: |
set -e
apk update && apk add aws-cli jq
terraform output -raw control_plane_instance_id
until [ -n "$(aws ec2 describe-instance-status --instance-ids "$(terraform output -raw control_plane_instance_id)" --filter Name=instance-status.reachability,Values=passed | jq -r '.InstanceStatuses[].InstanceStatus.Details[].Status')" ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- "v*.*.*"
branches:
- main
- emosbaugh/sc-108186/fix-kots-release-failures

permissions:
contents: write
Expand Down
1 change: 1 addition & 0 deletions web/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ build-local:

.PHONY: build-kotsadm
build-kotsadm:
rm -rf dist
KOTSADM_BUILD_VERSION=$(GIT_TAG) \
node \
--max_old_space_size=6144 \
Expand Down
Loading