OpenShift Gogs: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
* [[Gogs Concepts|Concepts]] | * [[Gogs Concepts|Concepts]] | ||
* [[Gogs Installation|Installation]] | * <span id='Installation'></span><span id='Uninstallation'></span>[[Gogs Installation|Installation]] | ||
* [[Gogs Configuration| Configuration]] | * [[Gogs Configuration| Configuration]] | ||
Revision as of 00:20, 7 December 2017
Internal
Subjects
Installation
The installation assumes that a Postgres instance was deployed already following the procedure specified here OpenShift Postgresql Installation and it is functional.
The following command line should have been used:
oc process -f ./generic-postgresql.yaml \ --param APPLICATION_NAME=gogs \ --param POSTGRESQL_USER=gogs \ --param POSTGRESQL_PASSWORD=... \ --param POSTGRESQL_DATABASE=gogs \ | oc create -f -
Use the template available at https://github.com/NovaOrdis/playground/blob/master/openshift/auxiliary-tools/gogs.yaml. It is based on https://github.com/OpenShiftDemos/openshift-cd-demo/blob/ocp-3.6/cicd-template.yaml.
Execute it as follows:
oc process -f ./gogs.yaml \ --param GOGS_PASSWORD=... \ --param GOGS_ADMIN_EMAIL=... \ | oc create -f -
Uninstallation
Delete the config maps: 'gogs-config', 'gogs-install'.
Delete the persistent volume claims 'gogs-config' and 'gogs-config', and re-make the persistent volumes available.
Delete:
is/gogs dc/gogs rc/gogs-1 routes/gogs svc/gogs po/gogs-1-*