Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 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
2 changes: 1 addition & 1 deletion .github/workflows/cluster_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
run: |
set -euo pipefail
result=$(curl -sSfL -H "Authorization: Bearer ${{ steps.auth.outputs.id_token }}" \
"${{ secrets.CLUSTER_TEST_INVOKER_URL }}?workflow=${{ inputs.workflow }}&splice-git-ref=${{ inputs.sha }}")
"${{ secrets.CLUSTER_TEST_INVOKER_URL }}?workflow=${{ inputs.workflow }}&splice-git-ref=${{ inputs.sha }}&public-splice=true")
echo "result=$result" >> "$GITHUB_OUTPUT"
6 changes: 1 addition & 5 deletions build-tools/copy_release_images_to_ghcr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,7 @@ fi
for VERSION in $VERSIONS; do
# Iterate through the directories in the cluster images directory
for IMAGE_NAME in $IMAGES; do
if [ "$IMAGE_NAME" == "pulumi-kubernetes-operator" ]; then
TAG="v${VERSION}"
else
TAG="$VERSION"
fi
TAG="$VERSION"
# Construct the full image names
SOURCE_IMAGE="$SRC_REGISTRY/$IMAGE_NAME:$TAG"
TARGET_IMAGE="$DEST_REGISTRY/$IMAGE_NAME:$TAG"
Expand Down
5 changes: 0 additions & 5 deletions build-tools/get-docker-image-reference
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,4 @@ set -euo pipefail

version="$(get-snapshot-version)"

# the version has a v prefix hardcoded in the pulumi-kuburnetes-operator helm chart so we add one as well
if [ "$appname" == "pulumi-kubernetes-operator" ]; then
version="v${version}"
fi

echo "$DEV_DOCKER_REGISTRY/${appname}:${version}"
3 changes: 3 additions & 0 deletions cluster/deployment/scratchneta/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export CLOUDSDK_CORE_PROJECT=da-cn-scratchnet
export GCP_CLUSTER_BASENAME="scratcha"
export GCP_MASTER_IPV4_CIDR="172.16.8.32/28"
export GCP_CLUSTER_HOSTNAME="${GCP_CLUSTER_BASENAME}.network.canton.global"
# We first set it to empty because dotenv doesn't respect unset so we need another way to remove the value
export PRIVATE_CONFIGS_PATH=""
export PUBLIC_CONFIGS_PATH=""
unset PRIVATE_CONFIGS_PATH
unset PUBLIC_CONFIGS_PATH

Expand Down
3 changes: 3 additions & 0 deletions cluster/deployment/scratchnetb/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export CLOUDSDK_CORE_PROJECT=da-cn-scratchnet
export GCP_CLUSTER_BASENAME="scratchb"
export GCP_MASTER_IPV4_CIDR="172.16.5.32/28"
export GCP_CLUSTER_HOSTNAME="${GCP_CLUSTER_BASENAME}.network.canton.global"
# We first set it to empty because dotenv doesn't respect unset so we need another way to remove the value
export PRIVATE_CONFIGS_PATH=""
export PUBLIC_CONFIGS_PATH=""
unset PRIVATE_CONFIGS_PATH
unset PUBLIC_CONFIGS_PATH

Expand Down
3 changes: 3 additions & 0 deletions cluster/deployment/scratchnetc/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export CLOUDSDK_CORE_PROJECT=da-cn-scratchnet
export GCP_CLUSTER_BASENAME="scratchc"
export GCP_MASTER_IPV4_CIDR="172.16.6.32/28"
export GCP_CLUSTER_HOSTNAME="${GCP_CLUSTER_BASENAME}.network.canton.global"
# We first set it to empty because dotenv doesn't respect unset so we need another way to remove the value
export PRIVATE_CONFIGS_PATH=""
export PUBLIC_CONFIGS_PATH=""
unset PRIVATE_CONFIGS_PATH
unset PUBLIC_CONFIGS_PATH

Expand Down
7 changes: 5 additions & 2 deletions cluster/deployment/scratchnetd/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export CLOUDSDK_CORE_PROJECT=da-cn-scratchnet
export GCP_CLUSTER_BASENAME="scratchd"
export GCP_MASTER_IPV4_CIDR="172.16.9.32/28"
export GCP_CLUSTER_HOSTNAME="${GCP_CLUSTER_BASENAME}.network.canton.global"
# We first set it to empty because dotenv doesn't respect unset so we need another way to remove the value
export PRIVATE_CONFIGS_PATH=""
export PUBLIC_CONFIGS_PATH=""
unset PRIVATE_CONFIGS_PATH
unset PUBLIC_CONFIGS_PATH

Expand Down Expand Up @@ -35,6 +38,6 @@ export APPROVE_SV_RUNBOOK=true

# TODO(#14679): Remove
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we have this stuff at all?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does not make sense indeed, let me clean it up

export VALIDATOR_RUNBOOK_POSTGRES_PVC_SIZE="240Gi"
export OVERRIDE_VERSION="0.3.20-snapshot.20250407.8755.0.v4946b1b9"
export CHARTS_VERSION="0.3.20-snapshot.20250407.8755.0.v4946b1b9"
export OVERRIDE_VERSION="0.4.0"
export CHARTS_VERSION="0.4.0"
export CACHE_DEV_DOCKER_REGISTRY=$DEV_DOCKER_REGISTRY
3 changes: 3 additions & 0 deletions cluster/deployment/scratchnete/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export CLOUDSDK_CORE_PROJECT=da-cn-scratchnet
export GCP_CLUSTER_BASENAME="scratche"
export GCP_MASTER_IPV4_CIDR="172.16.30.32/28"
export GCP_CLUSTER_HOSTNAME="${GCP_CLUSTER_BASENAME}.network.canton.global"
# We first set it to empty because dotenv doesn't respect unset so we need another way to remove the value
export PRIVATE_CONFIGS_PATH=""
export PUBLIC_CONFIGS_PATH=""
unset PRIVATE_CONFIGS_PATH
unset PUBLIC_CONFIGS_PATH

Expand Down
Loading