-
Notifications
You must be signed in to change notification settings - Fork 8
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
e2e: add smoke test for peer pods #1005
Merged
katexochen
merged 4 commits into
p/revert-node-installer
from
burgerdev/pp-test-rebased
Nov 19, 2024
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: e2e peer-pods | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
image-id: | ||
description: "ID of the guest VM image to test (default: build a fresh image)" | ||
required: false | ||
pull_request: | ||
paths: | ||
- .github/workflows/e2e_peerpods.yml | ||
- packages/test-peerpods.sh | ||
- packages/by-name/cloud-api-adaptor/** | ||
- packages/by-name/kata/** | ||
- packages/by-name/image-podvm/** | ||
- packages/nixos | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- uses: ./.github/actions/setup_nix | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
cachixToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
- name: Login to Azure | ||
uses: azure/login@a65d910e8af852a8061c627c456678983e180302 # v2.2.0 | ||
with: | ||
creds: ${{ secrets.CONTRAST_CI_INFRA_AZURE }} | ||
- name: Test peer-pods | ||
env: | ||
azure_subscription_id: ${{ vars.AZURE_SUBSCRIPTION_ID }} | ||
azure_image_id: ${{ inputs.image-id }} | ||
azure_resource_group: contrast-ci | ||
azure_location: germanywestcentral | ||
CONTRAST_CACHE_DIR: "./workspace.cache" | ||
run: | | ||
ssh-keygen -t rsa -f ./infra/azure-peerpods/id_rsa -N "" | ||
cat >infra/azure-peerpods/iam.auto.tfvars <<EOF | ||
tenant_id = "${{ vars.AZURE_TENANT_ID }}" | ||
client_id = "${{ vars.PEER_POD_CLIENT_ID_AZURE }}" | ||
client_secret = "${{ secrets.PEER_POD_CLIENT_SECRET_AZURE }}" | ||
resource_group = "contrast-ci" | ||
EOF | ||
nix run .#scripts.test-peerpods | ||
- name: Terminate cluster | ||
if: always() | ||
run: | | ||
nix run -L .#terraform -- -chdir=infra/azure-peerpods destroy --auto-approve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,4 @@ id_rsa* | |
kube.conf | ||
out.env | ||
infra/**/kustomization.yaml | ||
infra/**/workload-identity.yaml | ||
uplosi.conf* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
terraform { | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = "4.5.0" | ||
} | ||
azuread = { | ||
source = "hashicorp/azuread" | ||
version = "3.0.2" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
version = "2.5.2" | ||
} | ||
} | ||
} | ||
|
||
provider "azurerm" { | ||
subscription_id = var.subscription_id | ||
features { | ||
resource_group { | ||
prevent_deletion_if_contains_resources = false | ||
} | ||
} | ||
} | ||
|
||
data "azurerm_subscription" "current" {} | ||
|
||
data "azuread_client_config" "current" {} | ||
|
||
provider "azuread" { | ||
tenant_id = data.azurerm_subscription.current.tenant_id | ||
} | ||
|
||
locals { | ||
name = var.resource_group | ||
} | ||
|
||
resource "azurerm_resource_group" "rg" { | ||
name = var.resource_group | ||
location = var.location | ||
} | ||
|
||
resource "azuread_application" "app" { | ||
display_name = "${local.name}-app" | ||
owners = [data.azuread_client_config.current.object_id] | ||
} | ||
|
||
resource "azuread_service_principal" "sp" { | ||
client_id = azuread_application.app.client_id | ||
app_role_assignment_required = false | ||
owners = [data.azuread_client_config.current.object_id] | ||
} | ||
|
||
resource "azurerm_role_assignment" "ra_vm_contributor" { | ||
scope = azurerm_resource_group.rg.id | ||
role_definition_name = "Virtual Machine Contributor" | ||
principal_id = azuread_service_principal.sp.object_id | ||
} | ||
|
||
resource "azurerm_role_assignment" "ra_reader" { | ||
scope = azurerm_resource_group.rg.id | ||
role_definition_name = "Reader" | ||
principal_id = azuread_service_principal.sp.object_id | ||
} | ||
|
||
resource "azurerm_role_assignment" "ra_network_contributor" { | ||
scope = azurerm_resource_group.rg.id | ||
role_definition_name = "Network Contributor" | ||
principal_id = azuread_service_principal.sp.object_id | ||
} | ||
|
||
resource "azuread_application_password" "pw" { | ||
application_id = azuread_application.app.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
output "client_secret_env" { | ||
value = <<EOF | ||
client_id = "${azuread_application.app.client_id}" | ||
tenant_id = "${data.azurerm_subscription.current.tenant_id}" | ||
client_secret = "${azuread_application_password.pw.value}" | ||
EOF | ||
sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
variable "resource_group" { | ||
type = string | ||
} | ||
|
||
variable "location" { | ||
type = string | ||
} | ||
|
||
variable "subscription_id" { | ||
type = string | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should still add a suffix somewhere to make this azure/peerpod specific. Otherwise rg might collide with aks/nested setup.
Also, upload-image step still expects a the _caa_cluster suffix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I added the
_caa_cluster
suffix back. Original reason for using the literal group was so that I can reusecontrast-ci
, but now that the RG is owned bycreate-pre
it does not matter anymore.