Skip to content

Commit

Permalink
Merge pull request #34 from pdettori/fix-helm-usage
Browse files Browse the repository at this point in the history
🐛 adjust tags in kueue-ks chart
  • Loading branch information
pdettori authored Nov 7, 2024
2 parents 3aec7d6 + 1b720f3 commit 208f909
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
chartVersion=$(echo ${{ github.ref_name }} | cut -c 2-)
sed -i.bk -e "s|image_placeholder|${{ env.REGISTRY }}/${{ env.REPO }}/suspend-webhook|g" \
-e "s|tag_placeholder|${{github.ref_name}}|g" \
-e "s|tag_placeholder|${chartVersion}|g" \
${{ env.CHARTS_PATH }}/suspend-webhook/values.yaml
helm package ${{ env.CHARTS_PATH }}/suspend-webhook --destination . --version ${chartVersion} --app-version ${chartVersion}
helm push ./suspend-webhook-chart-${chartVersion}.tgz oci://${{ env.REGISTRY }}/${{ env.REPO }}
Expand Down
10 changes: 5 additions & 5 deletions scripts/common/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ clusters=(cluster1 cluster2);
core=kind-kubeflex

# charts versions
CLUSTER_METRICS_CHART_VERSION=0.0.1-alpha.8
MC_SCHEDULING_CHART_VERSION=0.0.1-alpha.8
SHADOW_PODS_VERSION=0.0.1-alpha.8
SUSPEND_WEBHOOK_VERSION=0.0.1-alpha.8
KUEUE_KS_VERSION=0.0.1-alpha.8
CLUSTER_METRICS_CHART_VERSION=0.0.1-alpha.9
MC_SCHEDULING_CHART_VERSION=0.0.1-alpha.9
SHADOW_PODS_VERSION=0.0.1-alpha.9
SUSPEND_WEBHOOK_VERSION=0.0.1-alpha.9
KUEUE_KS_VERSION=0.0.1-alpha.9

# Kubeflow Pipeline Version
PIPELINE_VERSION=2.2.0
6 changes: 3 additions & 3 deletions scripts/kueue/install-kueue-ks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ for context in "${contexts[@]}"; do
wait-for-cmd '(($(wrap-cmd kubectl --context ${context} get deployments -n kueue-system -o jsonpath='{.status.readyReplicas}' kueue-controller-manager 2>/dev/null || echo 0) >= 1))'
done


: install kueue-ks

helm --kube-context k3d-kubeflex upgrade --install kueue-ks \
${SCRIPT_DIR}/../../charts/kueue-ks \
--create-namespace --namespace kueue-ks-system
oci://ghcr.io/kubestellar/galaxy/kueue-ks-chart \
--version ${KUEUE_KS_VERSION} \
--create-namespace --namespace kueue-ks-system


0 comments on commit 208f909

Please sign in to comment.