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 f9069cb commit b515a04Copy full SHA for b515a04
Makefile
@@ -39,16 +39,17 @@ container: $(PYTHON_TARGET) $(CONTAINER_SOURCES)
39
docker push localhost:5001/mrmat-python-api-fastapi:$(VERSION)
40
41
helm-install: $(HELM_TARGET)
42
+ kubectl create ns mpafastapi || true
43
+ kubectl label --overwrite ns mpafastapi istio-injection=true
44
helm upgrade \
45
mrmat-python-api-fastapi \
46
${HELM_TARGET} \
47
--install \
48
--force \
- --create-namespace \
- --namespace mrmat-python-api-fastapi
49
+ --namespace mpafastapi
50
51
helm-uninstall:
- helm delete -n mrmat-python-api-fastapi mrmat-python-api-fastapi
52
+ helm delete -n mpafastapi mrmat-python-api-fastapi
53
54
clean:
55
rm -rf build dist
0 commit comments