From e8c6704d144e8656c0834d6bfc962acadf95ee8d Mon Sep 17 00:00:00 2001 From: Dipankar Das <65275144+dipankardas011@users.noreply.github.com> Date: Fri, 31 May 2024 17:54:24 +0530 Subject: [PATCH] fixed the nil pointer issue for --approve -> --yes Signed-off-by: Dipankar Das <65275144+dipankardas011@users.noreply.github.com> --- .github/workflows/test-mock.bkp.yml | 758 ++++++++++++++-------------- .github/workflows/test-mock.yml | 247 +-------- cli/cmd/addNodesHAAws.go | 2 +- cli/cmd/addNodesHAAzure.go | 2 +- cli/cmd/addNodesHACivo.go | 2 +- cli/cmd/createCluster.go | 12 +- cli/cmd/deleteCluster.go | 12 +- cli/cmd/deleteNodesHAAws.go | 2 +- cli/cmd/deleteNodesHAAzure.go | 2 +- cli/cmd/deleteNodesHACivo.go | 2 +- 10 files changed, 421 insertions(+), 620 deletions(-) diff --git a/.github/workflows/test-mock.bkp.yml b/.github/workflows/test-mock.bkp.yml index ad936fd..cc21324 100644 --- a/.github/workflows/test-mock.bkp.yml +++ b/.github/workflows/test-mock.bkp.yml @@ -1,379 +1,379 @@ -name: "Test Functionality of the Mock cli" -on: - pull_request: - paths: - - '.github/workflows/test-mock.yml' - - 'cli/**' - - 'scripts/**' - - 'go.mod' - - 'go.sum' - types: [ labeled, opened, synchronize, reopened ] - branches: [ main ] - push: - paths: - - 'scripts/**' - - 'cli/**' - - '.github/workflows/test-mock.yml' - - 'go.mod' - - 'go.sum' - branches: [ main ] -jobs: - ksctl-cli-windows: - if: | - ( - github.event.label.name == 'pr/lgtm' || - contains(github.event.pull_request.labels.*.name, 'pr/lgtm') - ) || ( - github.event_name == 'push' && - github.ref == 'refs/heads/main' - ) - runs-on: windows-latest - env: - KSCTL_FAKE_FLAG_ENABLED: "1" - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.21.0 - - - name: build ksctl - run: | - cd .\scripts - .\builder.ps1 - cd C:\Users\runneradmin\AppData\Local\ksctl - .\ksctl.exe version - - - name: civo create - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe create civo -n demo -r LON1 --nodeSizeMP "g4s.kube.small" --version 1.27.1 --verbose -1 -s store-local --yes - - .\ksctl.exe create ha-civo -n ha-demo-k3s --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap k3s - - .\ksctl.exe create ha-civo -n ha-demo-kubeadm --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap kubeadm - - - name: azure create - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe create azure -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes - - .\ksctl.exe create ha-azure -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s - - .\ksctl.exe create ha-azure -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm - - - name: aws create - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - # .\ksctl.exe create aws -n demo -r fake --nodeSizeMP "fake" --version 1.27.1 -s store-local --verbose -1 --yes - # - .\ksctl.exe create ha-aws -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s - - .\ksctl.exe create ha-aws -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm - - - name: local create - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe create local -n demolocal --version 1.27.1 --verbose -1 -s store-local --yes - - - name: civo get - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe get -s store-local -p civo - - - name: azure get - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe get -s store-local -p azure - - - name: aws get - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe get -s store-local -p aws - - - name: get all - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe get -s store-local - - - name: civo switch - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe switch -p civo -n demo -s store-local -r LON1 - .\ksctl.exe switch -p ha-civo -n ha-demo-k3s -s store-local -r LON1 --bootstrap k3s - .\ksctl.exe switch -p ha-civo -n ha-demo-kubeadm -s store-local -r LON1 --bootstrap kubeadm - - - name: aws switch - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - # .\ksctl.exe switch -p aws -n demo -s store-local -r fake - .\ksctl.exe switch -p ha-aws -n ha-demo-k3s -s store-local -r fake --bootstrap k3s - .\ksctl.exe switch -p ha-aws -n ha-demo-kubeadm -s store-local -r fake --bootstrap kubeadm - - - name: azure switch - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe switch -p azure -n demo -s store-local -r fake - .\ksctl.exe switch -p ha-azure -n ha-demo-k3s -s store-local -r fake --bootstrap k3s - .\ksctl.exe switch -p ha-azure -n ha-demo-kubeadm -s store-local -r fake --bootstrap kubeadm - - - name: civo scale up and down - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete ha-civo del-nodes -n ha-demo-k3s --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap k3s - .\ksctl.exe create ha-civo add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap k3s - - .\ksctl.exe delete ha-civo del-nodes -n ha-demo-kubeadm --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap kubeadm - .\ksctl.exe create ha-civo add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap kubeadm - - - name: azure scale up and down - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete ha-azure del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s - .\ksctl.exe create ha-azure add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s - - .\ksctl.exe delete ha-azure del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm - .\ksctl.exe create ha-azure add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm - - - name: aws scale up and down - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete ha-aws del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s - .\ksctl.exe create ha-aws add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s - - .\ksctl.exe delete ha-aws del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm - .\ksctl.exe create ha-aws add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm - - - name: civo delete - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete civo -n demo -r LON1 -s store-local -v -1 --yes - .\ksctl.exe delete ha-civo -n ha-demo-k3s -r LON1 -s store-local -v -1 --yes --bootstrap k3s - .\ksctl.exe delete ha-civo -n ha-demo-kubeadm -r LON1 -s store-local -v -1 --yes --bootstrap kubeadm - - - - name: azure delete - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete azure -n demo -r fake -s store-local -v -1 --yes - .\ksctl.exe delete ha-azure -n ha-demo-k3s -r fake -s store-local -v -1 --yes --bootstrap k3s - .\ksctl.exe delete ha-azure -n ha-demo-kubeadm -r fake -s store-local -v -1 --yes --bootstrap kubeadm - - - name: aws delete - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - # .\ksctl.exe delete aws -n demo -r fake -s store-local -v -1 --yes - .\ksctl.exe delete ha-aws -n ha-demo-k3s -r fake -s store-local -v -1 --yes --bootstrap k3s - .\ksctl.exe delete ha-aws -n ha-demo-kubeadm -r fake -s store-local -v -1 --yes --bootstrap kubeadm - - - name: local delete - working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' - run: | - .\ksctl.exe delete local -n demolocal -s store-local -v -1 --yes - - ksctl-cli-unix: - strategy: - matrix: - os: [macos-latest, ubuntu-latest] - - if: | - ( - github.event.label.name == 'pr/lgtm' || - contains(github.event.pull_request.labels.*.name, 'pr/lgtm') - ) || ( - github.event_name == 'push' && - github.ref == 'refs/heads/main' - ) - runs-on: ${{ matrix.os }} - env: - KSCTL_FAKE_FLAG_ENABLED: "1" - PS4: '+\[\033[0;33m\](\[\033[0;36m\]${BASH_SOURCE##*/}:${LINENO}\[\033[0;33m\])\[\033[0m\] ' - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.21.0 - - - name: build ksctl linux - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - make install_linux - ksctl version - - - name: build ksctl macos - if: ${{ matrix.os == 'macos-latest' }} - run: | - set -xe - make install_macos_intel - ksctl version - - - name: civo create - run: | - set -xe - ksctl create civo -n demo -r LON1 --nodeSizeMP "g4s.kube.small" --version 1.27.1 -s store-local --verbose -1 --yes - ksctl create ha-civo -n ha-demo --nodeSizeDS "fake.small" -s store-local --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -r LON1 --verbose -1 --yes - - - name: azure create - run: | - set -xe - ksctl create azure -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes - ksctl create ha-azure -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes - - - name: aws create - run: | - set -xe - # ksctl create aws -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes - ksctl create ha-aws -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes - - - name: local create - run: | - set -xe - ksctl create local -n demolocal -s store-local --verbose -1 --yes - - - name: local create mongodb - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - unset KSCTL_FAKE_FLAG_ENABLED - docker run -d \ - --name mongodb \ - -p 27017:27017 \ - -e MONGO_INITDB_ROOT_USERNAME=root \ - -e MONGO_INITDB_ROOT_PASSWORD=1234 \ - mongo - export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - ksctl create local -n demolocal-extmongo -s external-store-mongodb --verbose -1 --yes - - - name: civo get - run: | - set -xe - ksctl get -p civo -s store-local - - - name: azure get - run: | - set -xe - ksctl get -p azure -s store-local - - - name: aws get - run: | - set -xe - ksctl get -p aws -s store-local - - - name: local get - run: | - set -xe - ksctl get -p local -s store-local - - - name: local get mongo - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - unset KSCTL_FAKE_FLAG_ENABLED - export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - ksctl get -p local -s external-store-mongodb - - - name: all - run: | - set -xe - ksctl get -s store-local - - - name: all mongodb - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - unset KSCTL_FAKE_FLAG_ENABLED - export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - ksctl get -s external-store-mongodb - - - name: local switch - run: | - set -xe - ksctl switch -p local -n demolocal -s store-local - - - name: local switch mongodb - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - unset KSCTL_FAKE_FLAG_ENABLED - export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - ksctl switch -p local -n demolocal-extmongo -s external-store-mongodb - - - name: civo switch - run: | - set -xe - ksctl switch -p civo -n demo -s store-local -r LON1 - ksctl switch -p ha-civo -n ha-demo -s store-local -r LON1 - - - name: azure switch - run: | - set -xe - ksctl switch -p azure -n demo -s store-local -r fake - ksctl switch -p ha-azure -n ha-demo -s store-local -r fake - - - name: aws switch - run: | - set -xe - # ksctl switch -p aws -n demo -s store-local -r fake - ksctl switch -p ha-aws -n ha-demo -s store-local -r fake - - - name: civo scale up and down - run: | - set -xe - ksctl delete ha-civo del-nodes -n ha-demo --noWP 0 -r LON1 -s store-local --yes -v -1 - ksctl create ha-civo add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes - - - name: azure scale up and down - run: | - set -xe - ksctl delete ha-azure del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 - ksctl create ha-azure add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes - - - name: aws scale up and down - run: | - set -xe - ksctl delete ha-aws del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 - ksctl create ha-aws add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes - - - name: civo delete - run: | - set -xe - ksctl delete civo -n demo -r LON1 -s store-local -v -1 --yes - ksctl delete ha-civo -n ha-demo -r LON1 -s store-local -v -1 --yes - - - name: azure delete - run: | - set -xe - ksctl delete azure -n demo -r fake -s store-local -v -1 --yes - ksctl delete ha-azure -n ha-demo -r fake -s store-local -v -1 --yes - - - name: aws delete - run: | - set -xe - # ksctl delete aws -n demo -r fake -s store-local -v -1 --yes - ksctl delete ha-aws -n ha-demo -r fake -s store-local -v -1 --yes - - - name: local delete - run: | - set -xe - ksctl delete local -n demolocal -v -1 -s store-local --yes - - - name: local delete mongodb - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - set -xe - unset KSCTL_FAKE_FLAG_ENABLED - export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - ksctl delete local -n demolocal-extmongo -v -1 -s external-store-mongodb --yes - - - name: storage provider - run: | - set -xe - ksctl create local -n demolocal -s store-local -v -1 --yes - ksctl create local -n demolocal -s external-store-mongodb -v -1 --yes || echo "Expected to fail :) due to missing env vars" - ksctl create local -n demolocal -s store-local123 -v -1 --yes || echo "Expected to fail :) due to invalid provider name" +# name: "Test Functionality of the Mock cli" +# on: +# pull_request: +# paths: +# - '.github/workflows/test-mock.yml' +# - 'cli/**' +# - 'scripts/**' +# - 'go.mod' +# - 'go.sum' +# types: [ labeled, opened, synchronize, reopened ] +# branches: [ main ] +# push: +# paths: +# - 'scripts/**' +# - 'cli/**' +# - '.github/workflows/test-mock.yml' +# - 'go.mod' +# - 'go.sum' +# branches: [ main ] +# jobs: +# ksctl-cli-windows: +# if: | +# ( +# github.event.label.name == 'pr/lgtm' || +# contains(github.event.pull_request.labels.*.name, 'pr/lgtm') +# ) || ( +# github.event_name == 'push' && +# github.ref == 'refs/heads/main' +# ) +# runs-on: windows-latest +# env: +# KSCTL_FAKE_FLAG_ENABLED: "1" +# steps: +# - name: Checkout +# uses: actions/checkout@v3 +# +# - name: Set up Go +# uses: actions/setup-go@v4 +# with: +# go-version: 1.21.0 +# +# - name: build ksctl +# run: | +# cd .\scripts +# .\builder.ps1 +# cd C:\Users\runneradmin\AppData\Local\ksctl +# .\ksctl.exe version +# +# - name: civo create +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe create civo -n demo -r LON1 --nodeSizeMP "g4s.kube.small" --version 1.27.1 --verbose -1 -s store-local --yes +# +# .\ksctl.exe create ha-civo -n ha-demo-k3s --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap k3s +# +# .\ksctl.exe create ha-civo -n ha-demo-kubeadm --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap kubeadm +# +# - name: azure create +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe create azure -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes +# +# .\ksctl.exe create ha-azure -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s +# +# .\ksctl.exe create ha-azure -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm +# +# - name: aws create +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# # .\ksctl.exe create aws -n demo -r fake --nodeSizeMP "fake" --version 1.27.1 -s store-local --verbose -1 --yes +# # +# .\ksctl.exe create ha-aws -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s +# +# .\ksctl.exe create ha-aws -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm +# +# - name: local create +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe create local -n demolocal --version 1.27.1 --verbose -1 -s store-local --yes +# +# - name: civo get +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe get -s store-local -p civo +# +# - name: azure get +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe get -s store-local -p azure +# +# - name: aws get +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe get -s store-local -p aws +# +# - name: get all +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe get -s store-local +# +# - name: civo switch +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe switch -p civo -n demo -s store-local -r LON1 +# .\ksctl.exe switch -p ha-civo -n ha-demo-k3s -s store-local -r LON1 --bootstrap k3s +# .\ksctl.exe switch -p ha-civo -n ha-demo-kubeadm -s store-local -r LON1 --bootstrap kubeadm +# +# - name: aws switch +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# # .\ksctl.exe switch -p aws -n demo -s store-local -r fake +# .\ksctl.exe switch -p ha-aws -n ha-demo-k3s -s store-local -r fake --bootstrap k3s +# .\ksctl.exe switch -p ha-aws -n ha-demo-kubeadm -s store-local -r fake --bootstrap kubeadm +# +# - name: azure switch +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe switch -p azure -n demo -s store-local -r fake +# .\ksctl.exe switch -p ha-azure -n ha-demo-k3s -s store-local -r fake --bootstrap k3s +# .\ksctl.exe switch -p ha-azure -n ha-demo-kubeadm -s store-local -r fake --bootstrap kubeadm +# +# - name: civo scale up and down +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete ha-civo del-nodes -n ha-demo-k3s --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap k3s +# .\ksctl.exe create ha-civo add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap k3s +# +# .\ksctl.exe delete ha-civo del-nodes -n ha-demo-kubeadm --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap kubeadm +# .\ksctl.exe create ha-civo add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap kubeadm +# +# - name: azure scale up and down +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete ha-azure del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s +# .\ksctl.exe create ha-azure add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s +# +# .\ksctl.exe delete ha-azure del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm +# .\ksctl.exe create ha-azure add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm +# +# - name: aws scale up and down +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete ha-aws del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s +# .\ksctl.exe create ha-aws add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s +# +# .\ksctl.exe delete ha-aws del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm +# .\ksctl.exe create ha-aws add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm +# +# - name: civo delete +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete civo -n demo -r LON1 -s store-local -v -1 --yes +# .\ksctl.exe delete ha-civo -n ha-demo-k3s -r LON1 -s store-local -v -1 --yes --bootstrap k3s +# .\ksctl.exe delete ha-civo -n ha-demo-kubeadm -r LON1 -s store-local -v -1 --yes --bootstrap kubeadm +# +# +# - name: azure delete +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete azure -n demo -r fake -s store-local -v -1 --yes +# .\ksctl.exe delete ha-azure -n ha-demo-k3s -r fake -s store-local -v -1 --yes --bootstrap k3s +# .\ksctl.exe delete ha-azure -n ha-demo-kubeadm -r fake -s store-local -v -1 --yes --bootstrap kubeadm +# +# - name: aws delete +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# # .\ksctl.exe delete aws -n demo -r fake -s store-local -v -1 --yes +# .\ksctl.exe delete ha-aws -n ha-demo-k3s -r fake -s store-local -v -1 --yes --bootstrap k3s +# .\ksctl.exe delete ha-aws -n ha-demo-kubeadm -r fake -s store-local -v -1 --yes --bootstrap kubeadm +# +# - name: local delete +# working-directory: 'C:\Users\runneradmin\AppData\Local\ksctl' +# run: | +# .\ksctl.exe delete local -n demolocal -s store-local -v -1 --yes +# +# ksctl-cli-unix: +# strategy: +# matrix: +# os: [macos-latest, ubuntu-latest] +# +# if: | +# ( +# github.event.label.name == 'pr/lgtm' || +# contains(github.event.pull_request.labels.*.name, 'pr/lgtm') +# ) || ( +# github.event_name == 'push' && +# github.ref == 'refs/heads/main' +# ) +# runs-on: ${{ matrix.os }} +# env: +# KSCTL_FAKE_FLAG_ENABLED: "1" +# PS4: '+\[\033[0;33m\](\[\033[0;36m\]${BASH_SOURCE##*/}:${LINENO}\[\033[0;33m\])\[\033[0m\] ' +# steps: +# - name: Checkout +# uses: actions/checkout@v3 +# +# - name: Set up Go +# uses: actions/setup-go@v4 +# with: +# go-version: 1.21.0 +# +# - name: build ksctl linux +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# make install_linux +# ksctl version +# +# - name: build ksctl macos +# if: ${{ matrix.os == 'macos-latest' }} +# run: | +# set -xe +# make install_macos_intel +# ksctl version +# +# - name: civo create +# run: | +# set -xe +# ksctl create civo -n demo -r LON1 --nodeSizeMP "g4s.kube.small" --version 1.27.1 -s store-local --verbose -1 --yes +# ksctl create ha-civo -n ha-demo --nodeSizeDS "fake.small" -s store-local --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -r LON1 --verbose -1 --yes +# +# - name: azure create +# run: | +# set -xe +# ksctl create azure -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes +# ksctl create ha-azure -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes +# +# - name: aws create +# run: | +# set -xe +# # ksctl create aws -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes +# ksctl create ha-aws -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes +# +# - name: local create +# run: | +# set -xe +# ksctl create local -n demolocal -s store-local --verbose -1 --yes +# +# - name: local create mongodb +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# unset KSCTL_FAKE_FLAG_ENABLED +# docker run -d \ +# --name mongodb \ +# -p 27017:27017 \ +# -e MONGO_INITDB_ROOT_USERNAME=root \ +# -e MONGO_INITDB_ROOT_PASSWORD=1234 \ +# mongo +# export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" +# ksctl create local -n demolocal-extmongo -s external-store-mongodb --verbose -1 --yes +# +# - name: civo get +# run: | +# set -xe +# ksctl get -p civo -s store-local +# +# - name: azure get +# run: | +# set -xe +# ksctl get -p azure -s store-local +# +# - name: aws get +# run: | +# set -xe +# ksctl get -p aws -s store-local +# +# - name: local get +# run: | +# set -xe +# ksctl get -p local -s store-local +# +# - name: local get mongo +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# unset KSCTL_FAKE_FLAG_ENABLED +# export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" +# ksctl get -p local -s external-store-mongodb +# +# - name: all +# run: | +# set -xe +# ksctl get -s store-local +# +# - name: all mongodb +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# unset KSCTL_FAKE_FLAG_ENABLED +# export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" +# ksctl get -s external-store-mongodb +# +# - name: local switch +# run: | +# set -xe +# ksctl switch -p local -n demolocal -s store-local +# +# - name: local switch mongodb +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# unset KSCTL_FAKE_FLAG_ENABLED +# export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" +# ksctl switch -p local -n demolocal-extmongo -s external-store-mongodb +# +# - name: civo switch +# run: | +# set -xe +# ksctl switch -p civo -n demo -s store-local -r LON1 +# ksctl switch -p ha-civo -n ha-demo -s store-local -r LON1 +# +# - name: azure switch +# run: | +# set -xe +# ksctl switch -p azure -n demo -s store-local -r fake +# ksctl switch -p ha-azure -n ha-demo -s store-local -r fake +# +# - name: aws switch +# run: | +# set -xe +# # ksctl switch -p aws -n demo -s store-local -r fake +# ksctl switch -p ha-aws -n ha-demo -s store-local -r fake +# +# - name: civo scale up and down +# run: | +# set -xe +# ksctl delete ha-civo del-nodes -n ha-demo --noWP 0 -r LON1 -s store-local --yes -v -1 +# ksctl create ha-civo add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes +# +# - name: azure scale up and down +# run: | +# set -xe +# ksctl delete ha-azure del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 +# ksctl create ha-azure add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes +# +# - name: aws scale up and down +# run: | +# set -xe +# ksctl delete ha-aws del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 +# ksctl create ha-aws add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes +# +# - name: civo delete +# run: | +# set -xe +# ksctl delete civo -n demo -r LON1 -s store-local -v -1 --yes +# ksctl delete ha-civo -n ha-demo -r LON1 -s store-local -v -1 --yes +# +# - name: azure delete +# run: | +# set -xe +# ksctl delete azure -n demo -r fake -s store-local -v -1 --yes +# ksctl delete ha-azure -n ha-demo -r fake -s store-local -v -1 --yes +# +# - name: aws delete +# run: | +# set -xe +# # ksctl delete aws -n demo -r fake -s store-local -v -1 --yes +# ksctl delete ha-aws -n ha-demo -r fake -s store-local -v -1 --yes +# +# - name: local delete +# run: | +# set -xe +# ksctl delete local -n demolocal -v -1 -s store-local --yes +# +# - name: local delete mongodb +# if: ${{ matrix.os == 'ubuntu-latest' }} +# run: | +# set -xe +# unset KSCTL_FAKE_FLAG_ENABLED +# export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" +# ksctl delete local -n demolocal-extmongo -v -1 -s external-store-mongodb --yes +# +# - name: storage provider +# run: | +# set -xe +# ksctl create local -n demolocal -s store-local -v -1 --yes +# ksctl create local -n demolocal -s external-store-mongodb -v -1 --yes || echo "Expected to fail :) due to missing env vars" +# ksctl create local -n demolocal -s store-local123 -v -1 --yes || echo "Expected to fail :) due to invalid provider name" diff --git a/.github/workflows/test-mock.yml b/.github/workflows/test-mock.yml index 07375db..2bca585 100644 --- a/.github/workflows/test-mock.yml +++ b/.github/workflows/test-mock.yml @@ -17,8 +17,9 @@ on: - 'go.mod' - 'go.sum' branches: [ main ] + jobs: - ksctl-cli-windows: + ksctl-cli: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] @@ -36,39 +37,37 @@ jobs: KSCTL_FAKE_FLAG_ENABLED: "1" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.4 - name: Set up Go uses: actions/setup-go@v4 with: - go-version: 1.21.0 + go-version: 1.22.3 - name: build ksctl windows if: ${{ matrix.os == 'windows-latest' }} run: | cd .\scripts .\builder.ps1 - cd C:\Users\runneradmin\AppData\Local\ksctl - .\ksctl.exe version - - echo "KSCTL_BIN=.\C:\Users\runneradmin\AppData\Local\ksctl\ksctl.exe" >> ${GITHUB_ENV} + echo "KSCTL_BIN=.\$env:LOCALAPPDATA\ksctl\ksctl.exe" >> "${GITHUB_ENV}" - name: build ksctl linux if: ${{ matrix.os == 'ubuntu-latest' }} run: | + set -x make install_linux - ksctl version - - echo "KSCTL_BIN=ksctl" >> ${GITHUB_ENV} + echo "KSCTL_BIN=ksctl" >> "${GITHUB_ENV}" - name: build ksctl macos if: ${{ matrix.os == 'macos-latest' }} run: | + set -x make install_macos_intel - ksctl version - - echo "KSCTL_BIN=ksctl" >> ${GITHUB_ENV} + echo "KSCTL_BIN=ksctl" >> "${GITHUB_ENV}" + - name: version + run: | + ${{ env.KSCTL_BIN }} version - name: civo create run: | @@ -76,7 +75,7 @@ jobs: ${{env.KSCTL_BIN}} create ha-civo -n ha-demo-k3s --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap k3s - ${{env.KSCTL_BIN}} create ha-civo -n ha-demo-kubeadm --nodeSizeDS "fake.small" --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap kubeadm + ${{env.KSCTL_BIN}} create ha-civo -n ha-demo-kubeadm --nodeSizeDS "fake.small" --version 1.28 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -s store-local -r LON1 --verbose -1 --yes --bootstrap kubeadm - name: azure create run: | @@ -84,7 +83,7 @@ jobs: ${{env.KSCTL_BIN}} create ha-azure -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s - ${{env.KSCTL_BIN}} create ha-azure -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm + ${{env.KSCTL_BIN}} create ha-azure -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.28 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm - name: aws create run: | @@ -92,7 +91,7 @@ jobs: ${{env.KSCTL_BIN}} create ha-aws -n ha-demo-k3s --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap k3s - ${{env.KSCTL_BIN}} create ha-aws -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.27.1 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm + ${{env.KSCTL_BIN}} create ha-aws -n ha-demo-kubeadm --nodeSizeDS "fake" --version 1.28 --nodeSizeLB "fake" --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 -s store-local --yes --bootstrap kubeadm - name: local create run: | @@ -175,26 +174,32 @@ jobs: - name: civo scale up and down run: | ${{env.KSCTL_BIN}} delete ha-civo del-nodes -n ha-demo-k3s --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap k3s + ${{env.KSCTL_BIN}} create ha-civo add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap k3s ${{env.KSCTL_BIN}} delete ha-civo del-nodes -n ha-demo-kubeadm --noWP 0 -r LON1 -s store-local --yes -v -1 --bootstrap kubeadm - ${{env.KSCTL_BIN}} create ha-civo add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap kubeadm + + ${{env.KSCTL_BIN}} create ha-civo add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.28 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes --bootstrap kubeadm - name: azure scale up and down run: | ${{env.KSCTL_BIN}} delete ha-azure del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s + ${{env.KSCTL_BIN}} create ha-azure add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s ${{env.KSCTL_BIN}} delete ha-azure del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm - ${{env.KSCTL_BIN}} create ha-azure add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm + + ${{env.KSCTL_BIN}} create ha-azure add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.28 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm - name: aws scale up and down run: | ${{env.KSCTL_BIN}} delete ha-aws del-nodes -n ha-demo-k3s --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap k3s + ${{env.KSCTL_BIN}} create ha-aws add-nodes -n ha-demo-k3s --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap k3s ${{env.KSCTL_BIN}} delete ha-aws del-nodes -n ha-demo-kubeadm --noWP 0 -r fake -s store-local --yes -v -1 --bootstrap kubeadm - ${{env.KSCTL_BIN}} create ha-aws add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm + + ${{env.KSCTL_BIN}} create ha-aws add-nodes -n ha-demo-kubeadm --noWP 1 --version 1.28 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes --bootstrap kubeadm - name: civo delete run: | @@ -225,207 +230,3 @@ jobs: export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" ${{env.KSCTL_BIN}} delete local -n demolocal-extmongo -v -1 -s external-store-mongodb --yes - # ksctl-cli-unix: - # strategy: - # matrix: - # os: [macos-latest, ubuntu-latest] - # - # if: | - # ( - # github.event.label.name == 'pr/lgtm' || - # contains(github.event.pull_request.labels.*.name, 'pr/lgtm') - # ) || ( - # github.event_name == 'push' && - # github.ref == 'refs/heads/main' - # ) - # runs-on: ${{ matrix.os }} - # env: - # KSCTL_FAKE_FLAG_ENABLED: "1" - # PS4: '+\[\033[0;33m\](\[\033[0;36m\]${BASH_SOURCE##*/}:${LINENO}\[\033[0;33m\])\[\033[0m\] ' - # steps: - # - name: Checkout - # uses: actions/checkout@v3 - # - # - name: Set up Go - # uses: actions/setup-go@v4 - # with: - # go-version: 1.21.0 - # - # - name: build ksctl linux - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # make install_linux - # ksctl version - # - # - name: build ksctl macos - # if: ${{ matrix.os == 'macos-latest' }} - # run: | - # set -xe - # make install_macos_intel - # ksctl version - # - # - name: civo create - # run: | - # set -xe - # ksctl create civo -n demo -r LON1 --nodeSizeMP "g4s.kube.small" --version 1.27.1 -s store-local --verbose -1 --yes - # ksctl create ha-civo -n ha-demo --nodeSizeDS "fake.small" -s store-local --version 1.27.1 --nodeSizeLB "fake.small" --nodeSizeCP "fake.small" --nodeSizeWP "fake.small" -r LON1 --verbose -1 --yes - # - # - name: azure create - # run: | - # set -xe - # ksctl create azure -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes - # ksctl create ha-azure -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes - # - # - name: aws create - # run: | - # set -xe - # # ksctl create aws -n demo -r fake --nodeSizeMP "fake" -s store-local --version 1.27.1 --verbose -1 --yes - # ksctl create ha-aws -n ha-demo --nodeSizeDS "fake" -s store-local --nodeSizeLB "fake" --version 1.27.1 --nodeSizeCP "fake" --nodeSizeWP "fake" -r fake --verbose -1 --yes - # - # - name: local create - # run: | - # set -xe - # ksctl create local -n demolocal -s store-local --verbose -1 --yes - # - # - name: local create mongodb - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # unset KSCTL_FAKE_FLAG_ENABLED - # docker run -d \ - # --name mongodb \ - # -p 27017:27017 \ - # -e MONGO_INITDB_ROOT_USERNAME=root \ - # -e MONGO_INITDB_ROOT_PASSWORD=1234 \ - # mongo - # export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - # ksctl create local -n demolocal-extmongo -s external-store-mongodb --verbose -1 --yes - # - # - name: civo get - # run: | - # set -xe - # ksctl get -p civo -s store-local - # - # - name: azure get - # run: | - # set -xe - # ksctl get -p azure -s store-local - # - # - name: aws get - # run: | - # set -xe - # ksctl get -p aws -s store-local - # - # - name: local get - # run: | - # set -xe - # ksctl get -p local -s store-local - # - # - name: local get mongo - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # unset KSCTL_FAKE_FLAG_ENABLED - # export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - # ksctl get -p local -s external-store-mongodb - # - # - name: all - # run: | - # set -xe - # ksctl get -s store-local - # - # - name: all mongodb - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # unset KSCTL_FAKE_FLAG_ENABLED - # export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - # ksctl get -s external-store-mongodb - # - # - name: local switch - # run: | - # set -xe - # ksctl switch -p local -n demolocal -s store-local - # - # - name: local switch mongodb - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # unset KSCTL_FAKE_FLAG_ENABLED - # export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - # ksctl switch -p local -n demolocal-extmongo -s external-store-mongodb - # - # - name: civo switch - # run: | - # set -xe - # ksctl switch -p civo -n demo -s store-local -r LON1 - # ksctl switch -p ha-civo -n ha-demo -s store-local -r LON1 - # - # - name: azure switch - # run: | - # set -xe - # ksctl switch -p azure -n demo -s store-local -r fake - # ksctl switch -p ha-azure -n ha-demo -s store-local -r fake - # - # - name: aws switch - # run: | - # set -xe - # # ksctl switch -p aws -n demo -s store-local -r fake - # ksctl switch -p ha-aws -n ha-demo -s store-local -r fake - # - # - name: civo scale up and down - # run: | - # set -xe - # ksctl delete ha-civo del-nodes -n ha-demo --noWP 0 -r LON1 -s store-local --yes -v -1 - # ksctl create ha-civo add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake.small" -s store-local -r LON1 -v -1 --yes - # - # - name: azure scale up and down - # run: | - # set -xe - # ksctl delete ha-azure del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 - # ksctl create ha-azure add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes - # - # - name: aws scale up and down - # run: | - # set -xe - # ksctl delete ha-aws del-nodes -n ha-demo --noWP 0 -s store-local -r fake --yes -v -1 - # ksctl create ha-aws add-nodes -n ha-demo --noWP 1 --version 1.27.1 --nodeSizeWP "fake" -s store-local -r fake -v -1 --yes - # - # - name: civo delete - # run: | - # set -xe - # ksctl delete civo -n demo -r LON1 -s store-local -v -1 --yes - # ksctl delete ha-civo -n ha-demo -r LON1 -s store-local -v -1 --yes - # - # - name: azure delete - # run: | - # set -xe - # ksctl delete azure -n demo -r fake -s store-local -v -1 --yes - # ksctl delete ha-azure -n ha-demo -r fake -s store-local -v -1 --yes - # - # - name: aws delete - # run: | - # set -xe - # # ksctl delete aws -n demo -r fake -s store-local -v -1 --yes - # ksctl delete ha-aws -n ha-demo -r fake -s store-local -v -1 --yes - # - # - name: local delete - # run: | - # set -xe - # ksctl delete local -n demolocal -v -1 -s store-local --yes - # - # - name: local delete mongodb - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # set -xe - # unset KSCTL_FAKE_FLAG_ENABLED - # export MONGODB_URI="mongodb://root:1234@127.0.0.1:27017" - # ksctl delete local -n demolocal-extmongo -v -1 -s external-store-mongodb --yes - # - # - name: storage provider - # run: | - # set -xe - # ksctl create local -n demolocal -s store-local -v -1 --yes - # ksctl create local -n demolocal -s external-store-mongodb -v -1 --yes || echo "Expected to fail :) due to missing env vars" - # ksctl create local -n demolocal -s store-local123 -v -1 --yes || echo "Expected to fail :) due to invalid provider name" diff --git a/cli/cmd/addNodesHAAws.go b/cli/cmd/addNodesHAAws.go index 500e04d..bb2169b 100644 --- a/cli/cmd/addNodesHAAws.go +++ b/cli/cmd/addNodesHAAws.go @@ -41,7 +41,7 @@ ksctl create ha-aws add-nodes -n demo -r ap-south-1 -s store-local --noWP 3 --no cli.Client.Metadata.K8sVersion = k8sVer cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := createApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := createApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "createApproval", "Reason", err) os.Exit(1) } diff --git a/cli/cmd/addNodesHAAzure.go b/cli/cmd/addNodesHAAzure.go index 01fc9e0..498cc01 100644 --- a/cli/cmd/addNodesHAAzure.go +++ b/cli/cmd/addNodesHAAzure.go @@ -42,7 +42,7 @@ ksctl create ha-azure add-nodes -n demo -r eastus -s store-local --noWP 3 --node cli.Client.Metadata.K8sVersion = k8sVer cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := createApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := createApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "createApproval", "Reason", err) os.Exit(1) } diff --git a/cli/cmd/addNodesHACivo.go b/cli/cmd/addNodesHACivo.go index 8291c9e..3cf4973 100644 --- a/cli/cmd/addNodesHACivo.go +++ b/cli/cmd/addNodesHACivo.go @@ -42,7 +42,7 @@ ksctl create ha-civo add-nodes -n demo -r LON1 -s store-local --noWP 3 --nodeSiz cli.Client.Metadata.IsHA = true cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := createApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := createApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "createApproval", "Reason", err) os.Exit(1) } diff --git a/cli/cmd/createCluster.go b/cli/cmd/createCluster.go index 5b215e7..d0f5164 100644 --- a/cli/cmd/createCluster.go +++ b/cli/cmd/createCluster.go @@ -38,7 +38,7 @@ ksctl create-cluster ha-aws -n demo -r us-east-1 --bootstrap k3s -s store-local SetDefaults(consts.CloudAws, consts.ClusterTypeHa) - createHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + createHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -58,7 +58,7 @@ var createClusterAzure = &cobra.Command{ SetDefaults(consts.CloudAzure, consts.ClusterTypeMang) - createManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + createManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -78,7 +78,7 @@ ksctl create-cluster civo SetDefaults(consts.CloudCivo, consts.ClusterTypeMang) - createManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + createManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -98,7 +98,7 @@ ksctl create-cluster local SetDefaults(consts.CloudLocal, consts.ClusterTypeMang) - createManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + createManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -118,7 +118,7 @@ ksctl create-cluster ha-civo SetDefaults(consts.CloudCivo, consts.ClusterTypeHa) - createHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + createHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -138,7 +138,7 @@ var createClusterHAAzure = &cobra.Command{ SetDefaults(consts.CloudAzure, consts.ClusterTypeHa) - createHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + createHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } diff --git a/cli/cmd/deleteCluster.go b/cli/cmd/deleteCluster.go index d926714..60ceb4d 100644 --- a/cli/cmd/deleteCluster.go +++ b/cli/cmd/deleteCluster.go @@ -38,7 +38,7 @@ ksctl create-cluster azure SetDefaults(consts.CloudAzure, consts.ClusterTypeMang) - deleteManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -58,7 +58,7 @@ ksctl delete-cluster civo SetDefaults(consts.CloudCivo, consts.ClusterTypeMang) - deleteManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -79,7 +79,7 @@ var deleteClusterHAAws = &cobra.Command{ SetDefaults(consts.CloudAws, consts.ClusterTypeHa) - deleteHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -99,7 +99,7 @@ var deleteClusterHAAzure = &cobra.Command{ SetDefaults(consts.CloudAzure, consts.ClusterTypeHa) - deleteHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -119,7 +119,7 @@ ksctl delete-cluster ha-civo SetDefaults(consts.CloudCivo, consts.ClusterTypeHa) - deleteHA(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteHA(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } @@ -139,7 +139,7 @@ ksctl delete-cluster local SetDefaults(consts.CloudLocal, consts.ClusterTypeMang) - deleteManaged(ctx, log, cmd.Flags().Lookup("approve").Changed) + deleteManaged(ctx, log, cmd.Flags().Lookup("yes").Changed) }, } diff --git a/cli/cmd/deleteNodesHAAws.go b/cli/cmd/deleteNodesHAAws.go index 8b222ce..5de0dec 100644 --- a/cli/cmd/deleteNodesHAAws.go +++ b/cli/cmd/deleteNodesHAAws.go @@ -38,7 +38,7 @@ ksctl delete-cluster ha-aws delete-nodes cli.Client.Metadata.K8sDistro = consts.KsctlKubernetes(distro) cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := deleteApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := deleteApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "deleteApproval", "Reason", err) os.Exit(1) } diff --git a/cli/cmd/deleteNodesHAAzure.go b/cli/cmd/deleteNodesHAAzure.go index db25832..5d30384 100644 --- a/cli/cmd/deleteNodesHAAzure.go +++ b/cli/cmd/deleteNodesHAAzure.go @@ -38,7 +38,7 @@ ksctl delete-cluster ha-azure delete-nodes cli.Client.Metadata.K8sDistro = consts.KsctlKubernetes(distro) cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := deleteApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := deleteApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "deleteApproval", "Reason", err) os.Exit(1) } diff --git a/cli/cmd/deleteNodesHACivo.go b/cli/cmd/deleteNodesHACivo.go index 2d92b40..e02544b 100644 --- a/cli/cmd/deleteNodesHACivo.go +++ b/cli/cmd/deleteNodesHACivo.go @@ -36,7 +36,7 @@ ksctl delete-cluster ha-civo delete-nodes cli.Client.Metadata.K8sDistro = consts.KsctlKubernetes(distro) cli.Client.Metadata.StateLocation = consts.KsctlStore(storage) - if err := deleteApproval(ctx, log, cmd.Flags().Lookup("approve").Changed); err != nil { + if err := deleteApproval(ctx, log, cmd.Flags().Lookup("yes").Changed); err != nil { log.Error(ctx, "deleteApproval", "Reason", err) os.Exit(1) }