From 0fab54e40e6f16782a567a1e4791aef959f3cd51 Mon Sep 17 00:00:00 2001 From: anaga670 Date: Thu, 11 Jul 2019 09:20:49 -0400 Subject: [PATCH] Updated docs --- docs/install-guide/omar-geoscript.md | 93 ---------------------------- 1 file changed, 93 deletions(-) diff --git a/docs/install-guide/omar-geoscript.md b/docs/install-guide/omar-geoscript.md index 8071364..556acf6 100644 --- a/docs/install-guide/omar-geoscript.md +++ b/docs/install-guide/omar-geoscript.md @@ -17,96 +17,3 @@ OMAR Geoscript does not require any persistent volumes. |------|------| |SPRING_PROFILES_ACTIVE|Comma separated profile tags (*e.g. production, dev*)| |SPRING_CLOUD_CONFIG_LABEL|The Git branch from which to pull config files (*e.g. master*)| - -### An Example DeploymentConfig -```yaml -apiVersion: v1 -kind: DeploymentConfig -metadata: - annotations: - openshift.io/generated-by: OpenShiftNewApp - creationTimestamp: null - generation: 1 - labels: - app: omar-openshift - name: omar-geoscript-app -spec: - replicas: 1 - selector: - app: omar-openshift - deploymentconfig: omar-geoscript-app - strategy: - activeDeadlineSeconds: 21600 - resources: {} - rollingParams: - intervalSeconds: 1 - maxSurge: 25% - maxUnavailable: 25% - timeoutSeconds: 600 - updatePeriodSeconds: 1 - type: Rolling - template: - metadata: - annotations: - openshift.io/generated-by: OpenShiftNewApp - creationTimestamp: null - labels: - app: omar-openshift - deploymentconfig: omar-geoscript-app - spec: - containers: - - env: - - name: SPRING_PROFILES_ACTIVE - value: dev - - name: SPRING_CLOUD_CONFIG_LABEL - value: master - image: 172.30.181.173:5000/o2/omar-geoscript-app@sha256:b972d0890e3de500efac96a980d26e336b059bfde49e2332e7bafe651dfb7fed - imagePullPolicy: Always - livenessProbe: - failureThreshold: 3 - initialDelaySeconds: 30 - periodSeconds: 10 - successThreshold: 1 - tcpSocket: - port: 8080 - timeoutSeconds: 5 - name: omar-geoscript-app - ports: - - containerPort: 8080 - protocol: TCP - readinessProbe: - failureThreshold: 3 - initialDelaySeconds: 20 - periodSeconds: 10 - successThreshold: 1 - tcpSocket: - port: 8080 - timeoutSeconds: 5 - resources: {} - terminationMessagePath: /dev/termination-log - dnsPolicy: ClusterFirst - restartPolicy: Always - securityContext: {} - terminationGracePeriodSeconds: 30 - test: false - triggers: - - type: ConfigChange - - imageChangeParams: - automatic: true - containerNames: - - omar-geoscript-app - from: - kind: ImageStreamTag - name: omar-geoscript-app:latest - namespace: o2 - type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 -``` - -## Application Configuration YAML