Skip to content

Instantly share code, notes, and snippets.

@heisendumb
Last active May 13, 2020 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heisendumb/47b282264371fc77070be373869317ac to your computer and use it in GitHub Desktop.
Save heisendumb/47b282264371fc77070be373869317ac to your computer and use it in GitHub Desktop.
makefile-keycloak-openshift
all: create
patch:
oc new-project sso
oc patch namespace sso -p '{"metadata": {"annotations": {"openshift.io/node-selector": "region=compute"}}}'
create:
oc create -f keycloak-https-mutual-tls.yml
database:
oc create -f postgres-sample.yml
delete:
oc delete namespace sso
recreate: delete create
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment