1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-02-03 13:21:51 +02:00

code review comments

This commit is contained in:
Evgeni Gordeev 2020-06-19 22:27:36 -05:00
parent e8fce0b14d
commit 8bec67beb7
2 changed files with 5 additions and 4 deletions

View File

@ -24,9 +24,9 @@ keycloak-%:
.PHONY: kubernetes-up
kubernetes-up:
cd kubernetes && make create-cluster
cd kubernetes && make deploy
make -C kubernetes create-cluster
make -C kubernetes deploy
.PHONY: kubernetes-down
kubernetes-down:
cd kubernetes && make delete-cluster
make -C kubernetes delete-cluster

View File

@ -63,4 +63,5 @@ helm-undeploy:
# creates K8S manifest from helm chart
.PHONY: helm-create-manifest
helm-create-manifest: helm-init
helm template --namespace default oauth2-proxy-example . > oauth2-proxy-example-full.yaml
echo "# WARNING: This file is auto-generated by `make helm-create-manifest`! DO NOT EDIT MANUALLY!" > oauth2-proxy-example-full.yaml
helm template --namespace default oauth2-proxy-example . >> oauth2-proxy-example-full.yaml