We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b3a09 commit f2ab1a6Copy full SHA for f2ab1a6
Makefile
@@ -238,11 +238,11 @@ install-local-common:
238
echo Your kube context is set to production infra, should be a local cluster; \
239
exit 1; \
240
fi
241
- @if ! kubectl get ns argo; then \
+ @if ! kubectl get ns argo 2> /dev/null; then \
242
kubectl create namespace argo; \
243
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.3.9/install.yaml; \
244
245
- @if ! kubectl get ns infra; then \
+ @if ! kubectl get ns infra 2> /dev/null; then \
246
kubectl apply \
247
-f chart/infra-server/templates/namespace.yaml; \
248
sleep 10; \
0 commit comments