File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ chart_testing_on_kind_sonarqube_task:
2222 script :
2323 - ct lint --config ct-sonarqube-test.yaml
2424 - ct install --namespace test --config ct-sonarqube-test.yaml --debug
25- depends_on :
26- - sonarqube_chart_static_compatibility_test
25+ # depends_on:
26+ # - sonarqube_chart_static_compatibility_test
2727
2828sonarqube_chart_packaging_task :
2929 << : *CHART_PACKAGING_TASK_TEMPLATE
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ chart_testing_on_kind_sonarqube_dce_task:
2222 script :
2323 - ct lint --config ct-sonarqube-dce-test.yaml
2424 - ct install --namespace test --config ct-sonarqube-dce-test.yaml --debug
25- depends_on :
26- - sonarqube_dce_chart_static_compatibility_test
25+ # depends_on:
26+ # - sonarqube_dce_chart_static_compatibility_test
2727
2828sonarqube_dce_chart_packaging_task :
2929 << : *CHART_PACKAGING_TASK_TEMPLATE
Original file line number Diff line number Diff line change @@ -93,7 +93,12 @@ chart_testing_on_kind: &CHART_TESTING_ON_KIND_TEMPLATE
9393 - kind create cluster
9494 - kubectl cluster-info --context kind-kind
9595 - kubectl get nodes
96+ - helm repo add istio https://istio-release.storage.googleapis.com/charts
97+ - kubectl create namespace istio-system --dry-run=client -o yaml | kubectl apply -f -
98+ - helm upgrade -i istio-base istio/base -n istio-system --set defaultRevision=default --set global.proxy.holdApplicationUntilProxyStarts=true --wait
99+ - helm upgrade -i istiod istio/istiod --set global.proxy.holdApplicationUntilProxyStarts=true -n istio-system --wait
96100 - kubectl create namespace test --dry-run=client -o yaml | kubectl apply -f -
101+ - kubectl label namespace test istio-injection=enabled
97102 - kubectl create secret docker-registry pullsecret --namespace test --docker-username=${DOCKER_USERNAME} --docker-password=${DOCKER_PASSWORD} --dry-run=client -o yaml | kubectl apply -f -
98103 artifacthub_lint_script :
99104 - ah lint
You can’t perform that action at this time.
0 commit comments