Skip to content

Commit

Permalink
fix: e2e failed
Browse files Browse the repository at this point in the history
  • Loading branch information
zyy17 committed Oct 28, 2024
1 parent 7b9976b commit e69d345
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions scripts/e2e/greptimedb-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ function drop_table() {
}

function deploy_greptimedb_cluster() {
helm upgrade --install mycluster greptimedb-cluster -n default
# Handle greptimedb-cluster dependencies.
helm repo add grafana https://grafana.github.io/helm-charts
helm dependency build charts/greptimedb-cluster

# Deploy greptimedb cluster.
helm upgrade --install mycluster charts/greptimedb-cluster -n default

timeout=300
sleep_interval=5
Expand All @@ -76,8 +81,7 @@ function deploy_greptimedb_cluster() {
}

function deploy_greptimedb_operator() {
cd charts
helm upgrade --install greptimedb-operator greptimedb-operator -n default
helm upgrade --install greptimedb-operator charts/greptimedb-operator -n default

# Wait for greptimedb operator to be ready
kubectl rollout status --timeout=60s deployment/greptimedb-operator -n default
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/release-charts-to-acr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ for dir in "$CHARTS_DIR"/*; do
helm package "$dir" --destination "$dir"

# Get the packaged chart file path.
packaged_file=$(find "$dir" -type f -name "*.tgz" ! -name "grafana-*.tgz")
packaged_file=$(find "$dir" -type f -name "${chart_name}-*.tgz" -print -quit)

echo "Package $chart_name to $packaged_file and push to oci://$OCI_REGISTRY_URL/$OCI_NAMESPACE/$chart_name ..."

Expand Down

0 comments on commit e69d345

Please sign in to comment.