2023-02-03 05:05:42 -05:00
|
|
|
name: e2e test upgrade
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
cloudProvider:
|
|
|
|
description: "Which cloud provider to use."
|
|
|
|
type: choice
|
|
|
|
options:
|
|
|
|
- "gcp"
|
|
|
|
- "azure"
|
|
|
|
default: "azure"
|
|
|
|
workerNodesCount:
|
|
|
|
description: "Number of worker nodes to spawn."
|
|
|
|
default: "2"
|
|
|
|
controlNodesCount:
|
|
|
|
description: "Number of control-plane nodes to spawn."
|
|
|
|
default: "3"
|
|
|
|
fromVersion:
|
|
|
|
description: CLI version to create a new cluster with. This has to be a released version, e.g., 'v2.1.3'.
|
|
|
|
type: string
|
|
|
|
required: true
|
2023-02-13 07:58:34 -05:00
|
|
|
gitRef:
|
|
|
|
description: Ref to build upgrading CLI on, empty for HEAD.
|
2023-02-03 05:05:42 -05:00
|
|
|
type: string
|
2023-02-13 07:58:34 -05:00
|
|
|
default: "head"
|
2023-02-03 05:05:42 -05:00
|
|
|
required: false
|
|
|
|
toImage:
|
|
|
|
description: Image (shortpath) the cluster is upgraded to, or empty for main/nightly.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
toKubernetes:
|
|
|
|
description: Kubernetes version to target for the upgrade, empty for target's default version.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
toMicroservices:
|
|
|
|
description: Microservice version to target for the upgrade, empty for target's default version.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cloudProvider:
|
|
|
|
description: "Which cloud provider to use."
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
workerNodesCount:
|
|
|
|
description: "Number of worker nodes to spawn."
|
|
|
|
type: number
|
|
|
|
required: true
|
|
|
|
controlNodesCount:
|
|
|
|
description: "Number of control-plane nodes to spawn."
|
|
|
|
type: number
|
|
|
|
required: true
|
|
|
|
fromVersion:
|
|
|
|
description: CLI version to create a new cluster with. This has to be a released version, e.g., 'v2.1.3'.
|
|
|
|
type: string
|
|
|
|
required: true
|
2023-02-13 07:58:34 -05:00
|
|
|
gitRef:
|
|
|
|
description: Ref to build upgrading CLI on.
|
2023-02-03 05:05:42 -05:00
|
|
|
type: string
|
2023-02-13 07:58:34 -05:00
|
|
|
default: "head"
|
2023-02-03 05:05:42 -05:00
|
|
|
required: false
|
|
|
|
toImage:
|
|
|
|
description: Image (shortpath) the cluster is upgraded to, or empty for main/nightly.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
toKubernetes:
|
|
|
|
description: Kubernetes version to target for the upgrade, empty for target's default version.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
toMicroservices:
|
|
|
|
description: Kubernetes version to target for the upgrade, empty for target's default version.
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
|
|
|
|
env:
|
|
|
|
ARM_CLIENT_ID: ${{ secrets.AZURE_E2E_CLIENT_ID }}
|
|
|
|
ARM_CLIENT_SECRET: ${{ secrets.AZURE_E2E_CLIENT_SECRET }}
|
|
|
|
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_E2E_SUBSCRIPTION_ID }}
|
|
|
|
ARM_TENANT_ID: ${{ secrets.AZURE_E2E_TENANT_ID }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
e2e-upgrade:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: read
|
|
|
|
steps:
|
2023-02-13 07:58:34 -05:00
|
|
|
- name: Checkout
|
|
|
|
if: inputs.gitRef == 'head'
|
2023-04-03 10:36:43 -04:00
|
|
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
2023-02-03 05:05:42 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
|
|
|
|
2023-02-13 07:58:34 -05:00
|
|
|
- name: Checkout ref
|
|
|
|
if: inputs.gitRef != 'head'
|
2023-04-03 10:36:43 -04:00
|
|
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
2023-02-13 07:58:34 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
ref: ${{ inputs.gitRef }}
|
|
|
|
|
2023-02-03 05:05:42 -05:00
|
|
|
- name: Setup Go environment
|
2023-04-04 05:06:30 -04:00
|
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
2023-02-03 05:05:42 -05:00
|
|
|
with:
|
2023-04-06 10:36:07 -04:00
|
|
|
go-version: "1.20.3"
|
2023-02-03 05:05:42 -05:00
|
|
|
|
|
|
|
- name: Login to Azure
|
|
|
|
if: inputs.cloudProvider == 'azure'
|
|
|
|
uses: ./.github/actions/login_azure
|
|
|
|
with:
|
|
|
|
azure_credentials: ${{ secrets.AZURE_E2E_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Login to AWS
|
|
|
|
uses: aws-actions/configure-aws-credentials@67fbcbb121271f7775d2e7715933280b06314838 # v1.7.0
|
|
|
|
with:
|
|
|
|
role-to-assume: arn:aws:iam::795746500882:role/GithubConstellationVersionsAPIRead
|
|
|
|
aws-region: eu-central-1
|
|
|
|
|
|
|
|
- name: Create Azure resource group
|
|
|
|
if: inputs.cloudProvider == 'azure'
|
|
|
|
id: az_resource_group_gen
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
uuid=$(cat /proc/sys/kernel/random/uuid)
|
|
|
|
name=e2e-test-${uuid%%-*}
|
|
|
|
az group create --location northeurope --name "$name" --tags e2e
|
|
|
|
echo "res_group_name=$name" >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
- name: Find latest nightly image
|
|
|
|
id: find-image
|
|
|
|
if: inputs.toImage == ''
|
|
|
|
uses: ./.github/actions/versionsapi
|
|
|
|
with:
|
|
|
|
command: latest
|
|
|
|
ref: main
|
|
|
|
stream: nightly
|
|
|
|
|
|
|
|
- name: Create cluster with 'fromVersion' CLI.
|
|
|
|
id: e2e_test
|
|
|
|
uses: ./.github/actions/e2e_test
|
|
|
|
with:
|
|
|
|
workerNodesCount: ${{ inputs.workerNodesCount }}
|
|
|
|
controlNodesCount: ${{ inputs.controlNodesCount }}
|
|
|
|
cloudProvider: ${{ inputs.cloudProvider }}
|
|
|
|
osImage: ${{ inputs.fromVersion }}
|
|
|
|
cliVersion: ${{ inputs.fromVersion }}
|
|
|
|
isDebugImage: "false"
|
|
|
|
gcpProject: ${{ secrets.GCP_E2E_PROJECT }}
|
2023-04-12 07:24:13 -04:00
|
|
|
gcpClusterCreateServiceAccount: "constellation-e2e-cluster@constellation-331613.iam.gserviceaccount.com"
|
|
|
|
gcpIAMCreateServiceAccount: "constellation-iam-e2e@constellation-331613.iam.gserviceaccount.com"
|
|
|
|
gcpInClusterServiceAccountKey: ${{ secrets.GCP_CLUSTER_SERVICE_ACCOUNT }}
|
2023-02-03 05:05:42 -05:00
|
|
|
test: "nop"
|
|
|
|
buildBuddyApiKey: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}
|
2023-04-12 07:24:13 -04:00
|
|
|
azureClusterCreateCredentials: ${{ secrets.AZURE_E2E_CLUSTER_CREDENTIALS }}
|
|
|
|
azureIAMCreateCredentials: ${{ secrets.AZURE_E2E_IAM_CREDENTIALS }}
|
2023-02-03 05:05:42 -05:00
|
|
|
|
|
|
|
- name: Run upgrade test
|
|
|
|
run: |
|
|
|
|
echo "Image target: $IMAGE"
|
|
|
|
echo "K8s target: $KUBERNETES"
|
|
|
|
echo "Microservice target: $MICROSERVICES"
|
|
|
|
|
|
|
|
if [[ -n ${MICROSERVICES} ]]; then
|
2023-04-13 09:58:37 -04:00
|
|
|
MICROSERVICES_FLAG="--target-microservices=$MICROSERVICES"
|
2023-02-03 05:05:42 -05:00
|
|
|
fi
|
|
|
|
if [[ -n ${KUBERNETES} ]]; then
|
2023-04-13 09:58:37 -04:00
|
|
|
KUBERNETES_FLAG="--target-kubernetes=$KUBERNETES"
|
2023-02-03 05:05:42 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
bazelisk run //e2e/internal/upgrade:upgrade_test -- --want-worker "$WORKERNODES" --want-control "$CONTROLNODES" --target-image "$IMAGE" "$KUBERNETES_FLAG" "$MICROSERVICES_FLAG"
|
|
|
|
env:
|
|
|
|
KUBECONFIG: ${{ steps.e2e_test.outputs.kubeconfig }}
|
|
|
|
IMAGE: ${{ inputs.toImage && inputs.toImage || steps.find-image.outputs.output }}
|
|
|
|
KUBERNETES: ${{ inputs.toKubernetes }}
|
|
|
|
MICROSERVICES: ${{ inputs.toMicroservices }}
|
|
|
|
WORKERNODES: ${{ inputs.workerNodesCount }}
|
|
|
|
CONTROLNODES: ${{ inputs.controlNodesCount }}
|
|
|
|
|
|
|
|
- name: Always fetch logs
|
|
|
|
if: always()
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
kubectl logs -n kube-system -l "app.kubernetes.io/name=node-maintenance-operator" --tail=-1 > node-maintenance-operator.logs
|
|
|
|
kubectl get nodeversions.update.edgeless.systems constellation-version -o yaml > constellation-version.yaml
|
|
|
|
env:
|
|
|
|
KUBECONFIG: ${{ steps.e2e_test.outputs.kubeconfig }}
|
|
|
|
|
|
|
|
- name: Always upload logs
|
|
|
|
if: always()
|
|
|
|
continue-on-error: true
|
2023-04-03 10:36:43 -04:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2023-02-03 05:05:42 -05:00
|
|
|
with:
|
|
|
|
name: upgrade-logs
|
|
|
|
path: |
|
|
|
|
node-maintenance-operator.logs
|
|
|
|
constellation-version.yaml
|
|
|
|
|
|
|
|
- name: Always terminate cluster
|
|
|
|
if: always()
|
|
|
|
continue-on-error: true
|
|
|
|
uses: ./.github/actions/constellation_destroy
|
|
|
|
with:
|
|
|
|
kubeconfig: ${{ steps.e2e_test.outputs.kubeconfig }}
|
|
|
|
|
|
|
|
- name: Always destroy Azure resource group
|
|
|
|
if: always() && inputs.cloudProvider == 'azure'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
az group delete \
|
|
|
|
--name ${{ steps.az_resource_group_gen.outputs.res_group_name }} \
|
|
|
|
--force-deletion-types Microsoft.Compute/virtualMachineScaleSets \
|
|
|
|
--force-deletion-types Microsoft.Compute/virtualMachines \
|
|
|
|
--no-wait \
|
|
|
|
--yes
|
2023-04-12 10:06:26 -04:00
|
|
|
|
|
|
|
- name: Notify about failure
|
|
|
|
if: failure() && github.ref == 'refs/heads/main'
|
|
|
|
continue-on-error: true
|
|
|
|
uses: ./.github/actions/notify_failure
|
|
|
|
with:
|
|
|
|
projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }}
|
|
|
|
teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}
|
|
|
|
test: "upgrade"
|
|
|
|
provider: ${{ inputs.cloudProvider }}
|