main.yml 815 B

12345678910111213141516171819
  1. ---
  2. - name: Expose registry with route
  3. command: oc expose service docker-registry
  4. - name: Install Cockpit template
  5. command: oc create -f registry-console.yaml -n default
  6. - name: Create passthrough route for Registry
  7. command: oc create route passthrough --service registry-console --port registry-console -n default
  8. - name: Deploy Registry
  9. command: oc new-app -n default --template=registry-console -p OPENSHIFT_OAUTH_PROVIDER_URL="{{ openshift_https_proxy }}:8443",REGISTRY_HOST=$(oc get route docker-registry -n default --template='{{ .spec.host }}'),COCKPIT_KUBE_URL=$(oc get route registry-console -n default --template='https://{{ .spec.host }}')
  10. - name: Enable cockpit-ui
  11. service:
  12. name: cockpit.socket
  13. enabled: true
  14. state: started
  15. when: not openshift.common.is_containerized | bool