Skip to content

Commit 5c7b188

Browse files
authored
ci(workflows): update artifact URLs to hashgraph.io (#24500)
Signed-off-by: Andrew Brandt <andrew.brandt@hashgraph.com>
1 parent 0037fd2 commit 5c7b188

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/zxc-publish-production-image.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ jobs:
130130
run: |
131131
DOCKER_REGISTRY="gcr.io"
132132
[[ "${{ inputs.version-policy }}" == "branch-commit" && "${{ inputs.registry-name }}" == "gcp" ]] && DOCKER_REGISTRY="us-docker.pkg.dev"
133-
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_REGISTRY="artifacts.swirldslabs.io"
133+
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_REGISTRY="artifacts.hashgraph.io"
134134
echo "docker-registry=${DOCKER_REGISTRY}" >>"${GITHUB_OUTPUT}"
135135
136136
DOCKER_TAG_BASE="gcr.io/hedera-registry"
137-
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_TAG_BASE="artifacts.swirldslabs.io/consensus-node-docker-release"
137+
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_TAG_BASE="artifacts.hashgraph.io/consensus-node-docker-release"
138138
139139
if [[ "${{ inputs.version-policy }}" == "branch-commit" && "${{ inputs.dry-run-enabled }}" != true ]]; then
140140
[[ "${{ inputs.registry-name }}" == "gcp" ]] && DOCKER_TAG_BASE="us-docker.pkg.dev/swirlds-registry/docker-adhoc-commits"
141-
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_TAG_BASE="artifacts.swirldslabs.io/consensus-node-docker-dev"
141+
[[ "${{ inputs.registry-name }}" == "jfrog" ]] && DOCKER_TAG_BASE="artifacts.hashgraph.io/consensus-node-docker-dev"
142142
elif [[ "${{ inputs.dry-run-enabled }}" == true ]]; then
143143
DOCKER_TAG_BASE="localhost:5000"
144144
fi
@@ -203,9 +203,9 @@ jobs:
203203
CONSENSUS_NODE_LINK="[GCP Console](https://${{ steps.set-registry.outputs.docker-tag-base }}/consensus-node:${{ inputs.version }})"
204204
if [[ "${{ inputs.registry-name }}" == "jfrog" ]]; then
205205
if [[ "${{ inputs.version-policy }}" == "branch-commit" ]]; then
206-
CONSENSUS_NODE_LINK="[Artifactory](https://artifacts.swirldslabs.io/ui/native/consensus-node-docker-dev)"
206+
CONSENSUS_NODE_LINK="[Artifactory](https://artifacts.hashgraph.io/ui/native/consensus-node-docker-dev)"
207207
else
208-
CONSENSUS_NODE_LINK="[Artifactory](https://artifacts.swirldslabs.io/ui/native/consensus-node-docker-release)"
208+
CONSENSUS_NODE_LINK="[Artifactory](https://artifacts.hashgraph.io/ui/native/consensus-node-docker-release)"
209209
fi
210210
fi
211211
fi

.github/workflows/zxc-single-day-longevity-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ jobs:
396396
set +x
397397
set +e
398398
cd "${{ github.workspace }}"/solo
399-
helm upgrade --install --set appName=nlg nlg oci://swirldslabs.jfrog.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values nlg-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
399+
helm upgrade --install --set appName=nlg nlg oci://artifacts.hashgraph.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values nlg-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
400400
sleep 180
401401
sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods
402402
nlgpod="$(sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods | grep nlg-network-load-generator| awk '{print $1}')"

.github/workflows/zxc-single-day-performance-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ jobs:
436436
set +x
437437
set +e
438438
cd "${{ github.workspace }}"/solo
439-
helm upgrade --install --set appName=nlg nlg oci://swirldslabs.jfrog.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values nlg-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
439+
helm upgrade --install --set appName=nlg nlg oci://artifacts.hashgraph.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values nlg-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
440440
sleep 180
441441
sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods
442442
nlgpod="$(sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods | grep nlg-network-load-generator| awk '{print $1}')"
@@ -488,7 +488,7 @@ jobs:
488488
set +e
489489
cd "${{ github.workspace }}"/solo
490490
sed -i -e 's/32Gi/256Gi/g' merkledb-values.yaml
491-
helm install --set name=merkle --set appName=merkle merklebench oci://swirldslabs.jfrog.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values merkledb-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
491+
helm install --set name=merkle --set appName=merkle merklebench oci://artifacts.hashgraph.io/load-generator-helm-release-local/network-load-generator --version "${{ env.NLG_VERSION }}" --values merkledb-values.yaml -n "${{ steps.set-namespace.outputs.namespace }}"
492492
sleep 180
493493
sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods
494494
merklebenchpod="$(sh "${{ github.workspace }}"/.github/workflows/support/citr/kubectlt -n "${{ steps.set-namespace.outputs.namespace }}" get pods | grep merklebench | awk '{print $1}')"

0 commit comments

Comments
 (0)