OpenShift Gogs: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:




* Use https://github.com/NovaOrdis/playground/blob/master/openshift/auxiliary-tools/gogs/gogs.yaml as template. It is based on https://github.com/OpenShiftDemos/openshift-cd-demo/blob/ocp-3.6/cicd-template.yaml
* Use the template https://github.com/NovaOrdis/playground/blob/master/openshift/auxiliary-tools/gogs/gogs.yaml. It is based on https://github.com/OpenShiftDemos/openshift-cd-demo/blob/ocp-3.6/cicd-template.yaml


The template results in the deployment of a Gogs and a related Postgres pod.
The template will create the OpenShift objects required by a Gogs repository and the Postgres dependency pod.


* Replace the conventional password value in the template with something safer:
* Replace the conventional password value in the template with something safer:

Revision as of 23:28, 24 November 2017

Internal

Installation

The template will create the OpenShift objects required by a Gogs repository and the Postgres dependency pod.

  • Replace the conventional password value in the template with something safer:
...
parameters:
- description: Password for the Gogs user.
  displayName: Gogs Password
  value: password
  name: GOGS_PASSWORD
  required: true
...