123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- {
- "apiVersion": "v1",
- "kind": "Template",
- "labels": {
- "template": "nginx-example"
- },
- "message": "The following service(s) have been created in your project: ${NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/nginx-ex/blob/master/README.md.",
- "metadata": {
- "annotations": {
- "description": "An example Nginx HTTP server and a reverse proxy (nginx) application that serves static content. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/nginx-ex/blob/master/README.md.",
- "iconClass": "icon-nginx",
- "openshift.io/display-name": "Nginx HTTP server and a reverse proxy",
- "openshift.io/documentation-url": "https://github.com/sclorg/nginx-ex",
- "openshift.io/long-description": "This template defines resources needed to develop a static application served by Nginx HTTP server and a reverse proxy (nginx), including a build configuration and application deployment configuration.",
- "openshift.io/provider-display-name": "Red Hat, Inc.",
- "openshift.io/support-url": "https://access.redhat.com",
- "tags": "quickstart,nginx"
- },
- "name": "nginx-example"
- },
- "objects": [
- {
- "apiVersion": "v1",
- "kind": "Service",
- "metadata": {
- "annotations": {
- "description": "Exposes and load balances the application pods"
- },
- "name": "${NAME}"
- },
- "spec": {
- "ports": [
- {
- "name": "web",
- "port": 8080,
- "targetPort": 8080
- }
- ],
- "selector": {
- "name": "${NAME}"
- }
- }
- },
- {
- "apiVersion": "v1",
- "kind": "Route",
- "metadata": {
- "annotations": {
- "template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
- },
- "name": "${NAME}"
- },
- "spec": {
- "host": "${APPLICATION_DOMAIN}",
- "to": {
- "kind": "Service",
- "name": "${NAME}"
- }
- }
- },
- {
- "apiVersion": "v1",
- "kind": "ImageStream",
- "metadata": {
- "annotations": {
- "description": "Keeps track of changes in the application image"
- },
- "name": "${NAME}"
- }
- },
- {
- "apiVersion": "v1",
- "kind": "BuildConfig",
- "metadata": {
- "annotations": {
- "description": "Defines how to build the application",
- "template.alpha.openshift.io/wait-for-ready": "true"
- },
- "name": "${NAME}"
- },
- "spec": {
- "output": {
- "to": {
- "kind": "ImageStreamTag",
- "name": "${NAME}:latest"
- }
- },
- "source": {
- "contextDir": "${CONTEXT_DIR}",
- "git": {
- "ref": "${SOURCE_REPOSITORY_REF}",
- "uri": "${SOURCE_REPOSITORY_URL}"
- },
- "type": "Git"
- },
- "strategy": {
- "sourceStrategy": {
- "from": {
- "kind": "ImageStreamTag",
- "name": "nginx:${NGINX_VERSION}",
- "namespace": "${NAMESPACE}"
- }
- },
- "type": "Source"
- },
- "triggers": [
- {
- "type": "ImageChange"
- },
- {
- "type": "ConfigChange"
- },
- {
- "github": {
- "secret": "${GITHUB_WEBHOOK_SECRET}"
- },
- "type": "GitHub"
- },
- {
- "generic": {
- "secret": "${GENERIC_WEBHOOK_SECRET}"
- },
- "type": "Generic"
- }
- ]
- }
- },
- {
- "apiVersion": "v1",
- "kind": "DeploymentConfig",
- "metadata": {
- "annotations": {
- "description": "Defines how to deploy the application server",
- "template.alpha.openshift.io/wait-for-ready": "true"
- },
- "name": "${NAME}"
- },
- "spec": {
- "replicas": 1,
- "selector": {
- "name": "${NAME}"
- },
- "strategy": {
- "type": "Rolling"
- },
- "template": {
- "metadata": {
- "labels": {
- "name": "${NAME}"
- },
- "name": "${NAME}"
- },
- "spec": {
- "containers": [
- {
- "env": [],
- "image": " ",
- "livenessProbe": {
- "httpGet": {
- "path": "/",
- "port": 8080
- },
- "initialDelaySeconds": 30,
- "timeoutSeconds": 3
- },
- "name": "nginx-example",
- "ports": [
- {
- "containerPort": 8080
- }
- ],
- "readinessProbe": {
- "httpGet": {
- "path": "/",
- "port": 8080
- },
- "initialDelaySeconds": 3,
- "timeoutSeconds": 3
- },
- "resources": {
- "limits": {
- "memory": "${MEMORY_LIMIT}"
- }
- }
- }
- ]
- }
- },
- "triggers": [
- {
- "imageChangeParams": {
- "automatic": true,
- "containerNames": [
- "nginx-example"
- ],
- "from": {
- "kind": "ImageStreamTag",
- "name": "${NAME}:latest"
- }
- },
- "type": "ImageChange"
- },
- {
- "type": "ConfigChange"
- }
- ]
- }
- }
- ],
- "parameters": [
- {
- "description": "The name assigned to all of the frontend objects defined in this template.",
- "displayName": "Name",
- "name": "NAME",
- "required": true,
- "value": "nginx-example"
- },
- {
- "description": "The OpenShift Namespace where the ImageStream resides.",
- "displayName": "Namespace",
- "name": "NAMESPACE",
- "required": true,
- "value": "openshift"
- },
- {
- "description": "Version of NGINX image to be used (1.12 by default).",
- "displayName": "NGINX Version",
- "name": "NGINX_VERSION",
- "required": true,
- "value": "1.12"
- },
- {
- "description": "Maximum amount of memory the container can use.",
- "displayName": "Memory Limit",
- "name": "MEMORY_LIMIT",
- "required": true,
- "value": "512Mi"
- },
- {
- "description": "The URL of the repository with your application source code.",
- "displayName": "Git Repository URL",
- "name": "SOURCE_REPOSITORY_URL",
- "required": true,
- "value": "https://github.com/sclorg/nginx-ex.git"
- },
- {
- "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
- "displayName": "Git Reference",
- "name": "SOURCE_REPOSITORY_REF"
- },
- {
- "description": "Set this to the relative path to your project if it is not in the root of your repository.",
- "displayName": "Context Directory",
- "name": "CONTEXT_DIR"
- },
- {
- "description": "The exposed hostname that will route to the nginx service, if left blank a value will be defaulted.",
- "displayName": "Application Hostname",
- "name": "APPLICATION_DOMAIN",
- "value": ""
- },
- {
- "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
- "displayName": "GitHub Webhook Secret",
- "from": "[a-zA-Z0-9]{40}",
- "generate": "expression",
- "name": "GITHUB_WEBHOOK_SECRET"
- },
- {
- "description": "A secret string used to configure the Generic webhook.",
- "displayName": "Generic Webhook Secret",
- "from": "[a-zA-Z0-9]{40}",
- "generate": "expression",
- "name": "GENERIC_WEBHOOK_SECRET"
- }
- ]
- }
|