diff options
Diffstat (limited to 'roles/openshift_examples/files')
9 files changed, 119 insertions, 130 deletions
| diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json index 0e618624b..9a935be5e 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json @@ -85,7 +85,7 @@              "containers": [                {                  "name": "mongodb", -                "image": "mongodb", +                "image": " ",                  "ports": [                    {                      "containerPort": 27017, diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json index 07290b1ea..4f73d00cc 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json @@ -102,7 +102,7 @@              "containers": [                {                  "name": "mongodb", -                "image": "mongodb", +                "image": " ",                  "ports": [                    {                      "containerPort": 27017, diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json index 1457d288c..5f133b946 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json @@ -85,7 +85,7 @@              "containers": [                {                  "name": "mysql", -                "image": "mysql", +                "image": " ",                  "ports": [                    {                      "containerPort": 3306, diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json index e39ee57c8..88d8c3940 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json @@ -3,7 +3,6 @@    "apiVersion": "v1",    "metadata": {      "name": "mysql-persistent", -    "creationTimestamp": null,      "annotations": {        "description": "MySQL database service, with persistent storage.  Scaling to more than one replica is not supported.  You must have persistent volumes available in your cluster to use this template.",        "iconClass": "icon-mysql-database", @@ -15,28 +14,18 @@        "kind": "Service",        "apiVersion": "v1",        "metadata": { -        "name": "${DATABASE_SERVICE_NAME}", -        "creationTimestamp": null +        "name": "${DATABASE_SERVICE_NAME}"        },        "spec": {          "ports": [            {              "name": "mysql", -            "protocol": "TCP", -            "port": 3306, -            "targetPort": 3306, -            "nodePort": 0 +            "port": 3306            }          ],          "selector": {            "name": "${DATABASE_SERVICE_NAME}" -        }, -        "portalIP": "", -        "type": "ClusterIP", -        "sessionAffinity": "None" -      }, -      "status": { -        "loadBalancer": {} +        }        }      },      { @@ -60,8 +49,7 @@        "kind": "DeploymentConfig",        "apiVersion": "v1",        "metadata": { -        "name": "${DATABASE_SERVICE_NAME}", -        "creationTimestamp": null +        "name": "${DATABASE_SERVICE_NAME}"        },        "spec": {          "strategy": { @@ -79,8 +67,7 @@                  "kind": "ImageStreamTag",                  "name": "mysql:latest",                  "namespace": "${NAMESPACE}" -              }, -              "lastTriggeredImage": "" +              }              }            },            { @@ -93,7 +80,6 @@          },          "template": {            "metadata": { -            "creationTimestamp": null,              "labels": {                "name": "${DATABASE_SERVICE_NAME}"              } @@ -102,11 +88,10 @@              "containers": [                {                  "name": "mysql", -                "image": "mysql", +                "image": " ",                  "ports": [                    { -                    "containerPort": 3306, -                    "protocol": "TCP" +                    "containerPort": 3306                    }                  ],                  "readinessProbe": { @@ -149,13 +134,7 @@                      "mountPath": "/var/lib/mysql/data"                    }                  ], -                "terminationMessagePath": "/dev/termination-log", -                "imagePullPolicy": "IfNotPresent", -                "capabilities": {}, -                "securityContext": { -                  "capabilities": {}, -                  "privileged": false -                } +                "imagePullPolicy": "IfNotPresent"                }              ],              "volumes": [ @@ -165,13 +144,10 @@                    "claimName": "${DATABASE_SERVICE_NAME}"                  }                } -            ], -            "restartPolicy": "Always", -            "dnsPolicy": "ClusterFirst" +            ]            }          } -      }, -      "status": {} +      }      }    ],    "parameters": [ @@ -179,7 +155,8 @@        "name": "MEMORY_LIMIT",        "displayName": "Memory Limit",        "description": "Maximum amount of memory the container can use.", -      "value": "512Mi" +      "value": "512Mi", +      "required": true      },      {        "name": "NAMESPACE", diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json index 39a71f25c..e90244a6b 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json @@ -85,7 +85,7 @@              "containers": [                {                  "name": "postgresql", -                "image": "postgresql", +                "image": " ",                  "ports": [                    {                      "containerPort": 5432, diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json index 347e01de3..7b05076a5 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json @@ -102,7 +102,7 @@              "containers": [                {                  "name": "postgresql", -                "image": "postgresql", +                "image": " ",                  "ports": [                    {                      "containerPort": 5432, diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json index f044152b3..dda16ecfa 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json @@ -437,7 +437,7 @@      },      {        "name": "DJANGO_SECRET_KEY", -      "displayName": "Djange Secret Key", +      "displayName": "Django Secret Key",        "description": "Set this to a long random string.",        "generate": "expression",        "from": "[\\w]{50}" diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json index 67fce4a46..d1ae6de90 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json @@ -12,35 +12,10 @@    },    "objects": [      { -      "kind": "Service", -      "apiVersion": "v1", -      "metadata": { -        "name": "${JENKINS_SERVICE_NAME}", -        "creationTimestamp": null -      }, -      "spec": { -        "ports": [ -          { -            "name": "web", -            "protocol": "TCP", -            "port": 8080, -            "targetPort": 8080, -            "nodePort": 0 -          } -        ], -        "selector": { -          "name": "${JENKINS_SERVICE_NAME}" -        }, -        "portalIP": "", -        "type": "ClusterIP", -        "sessionAffinity": "None" -      } -    }, -    {        "kind": "Route",        "apiVersion": "v1",        "metadata": { -        "name": "jenkins", +        "name": "${JENKINS_SERVICE_NAME}",          "creationTimestamp": null        },        "spec": { @@ -77,7 +52,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "jenkins:latest", +                "name": "${JENKINS_IMAGE_STREAM_TAG}",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -102,7 +77,7 @@              "containers": [                {                  "name": "jenkins", -                "image": "JENKINS_IMAGE", +                "image": " ",                  "readinessProbe": {                    "timeoutSeconds": 3,                    "initialDelaySeconds": 3, @@ -126,10 +101,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${JENKINS_SERVICE_NAME}-data", @@ -158,22 +133,35 @@            }          }        } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${JENKINS_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "protocol": "TCP", +            "port": 8080, +            "targetPort": 8080, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${JENKINS_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }      }    ],    "parameters": [      { -      "name": "MEMORY_LIMIT", -      "displayName": "Memory Limit", -      "description": "Maximum amount of memory the container can use.", -      "value": "512Mi" -    }, -    { -      "name": "NAMESPACE", -      "displayName": "Namespace", -      "description": "The OpenShift Namespace where the ImageStream resides.", -      "value": "openshift" -    }, -    {        "name": "JENKINS_SERVICE_NAME",        "displayName": "Jenkins Service Name",        "description": "The name of the OpenShift Service exposed for the Jenkins container.", @@ -185,6 +173,24 @@        "description": "Password for the Jenkins 'admin' user.",        "generate": "expression",        "value": "password" +    }, +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi" +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Jenkins ImageStream Namespace", +      "description": "The OpenShift Namespace where the Jenkins ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "JENKINS_IMAGE_STREAM_TAG", +      "displayName": "Jenkins ImageStreamTag", +      "description": "Name of the ImageStreamTag to be used for the Jenkins image.", +      "value": "jenkins:latest"      }    ],    "labels": { diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json index ef04b4482..c7bc3f2fa 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json @@ -12,35 +12,10 @@    },    "objects": [      { -      "kind": "Service", -      "apiVersion": "v1", -      "metadata": { -        "name": "${JENKINS_SERVICE_NAME}", -        "creationTimestamp": null -      }, -      "spec": { -        "ports": [ -          { -            "name": "web", -            "protocol": "TCP", -            "port": 8080, -            "targetPort": 8080, -            "nodePort": 0 -          } -        ], -        "selector": { -          "name": "${JENKINS_SERVICE_NAME}" -        }, -        "portalIP": "", -        "type": "ClusterIP", -        "sessionAffinity": "None" -      } -    }, -    {        "kind": "Route",        "apiVersion": "v1",        "metadata": { -        "name": "jenkins", +        "name": "${JENKINS_SERVICE_NAME}",          "creationTimestamp": null        },        "spec": { @@ -82,7 +57,7 @@        },        "spec": {          "strategy": { -            "type": "Recreate" +          "type": "Recreate"          },          "triggers": [            { @@ -94,7 +69,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "jenkins:latest", +                "name": "${JENKINS_IMAGE_STREAM_TAG}",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -119,7 +94,7 @@              "containers": [                {                  "name": "jenkins", -                "image": "JENKINS_IMAGE", +                "image": " ",                  "readinessProbe": {                    "timeoutSeconds": 3,                    "initialDelaySeconds": 3, @@ -143,10 +118,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${JENKINS_SERVICE_NAME}-data", @@ -175,22 +150,35 @@            }          }        } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${JENKINS_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "protocol": "TCP", +            "port": 8080, +            "targetPort": 8080, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${JENKINS_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }      }    ],    "parameters": [      { -      "name": "MEMORY_LIMIT", -      "displayName": "Memory Limit", -      "description": "Maximum amount of memory the container can use.", -      "value": "512Mi" -    }, -    { -      "name": "NAMESPACE", -      "displayName": "Namespace", -      "description": "The OpenShift Namespace where the ImageStream resides.", -      "value": "openshift" -    }, -    {        "name": "JENKINS_SERVICE_NAME",        "displayName": "Jenkins Service Name",        "description": "The name of the OpenShift Service exposed for the Jenkins container.", @@ -204,11 +192,29 @@        "value": "password"      },      { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi" +    }, +    {        "name": "VOLUME_CAPACITY",        "displayName": "Volume Capacity",        "description": "Volume space available for data, e.g. 512Mi, 2Gi.",        "value": "1Gi",        "required": true +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Jenkins ImageStream Namespace", +      "description": "The OpenShift Namespace where the Jenkins ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "JENKINS_IMAGE_STREAM_TAG", +      "displayName": "Jenkins ImageStreamTag", +      "description": "Name of the ImageStreamTag to be used for the Jenkins image.", +      "value": "jenkins:latest"      }    ],    "labels": { | 
