diff options
| author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-06-22 15:48:00 -0400 | 
|---|---|---|
| committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-06-22 15:48:00 -0400 | 
| commit | c7d674b0bf6c4804f26808f49b0ceff2500b852b (patch) | |
| tree | fbb1a0138703a7183e49cf07c6bd1ea0e863e241 /roles | |
| parent | a7ac3f7b513fe57ddccad15bdb6c7e9091f16bcd (diff) | |
| parent | 15bcfb3e59e6e31c00e23725547f896c03c93290 (diff) | |
| download | openshift-c7d674b0bf6c4804f26808f49b0ceff2500b852b.tar.gz openshift-c7d674b0bf6c4804f26808f49b0ceff2500b852b.tar.bz2 openshift-c7d674b0bf6c4804f26808f49b0ceff2500b852b.tar.xz openshift-c7d674b0bf6c4804f26808f49b0ceff2500b852b.zip  | |
Merge pull request #289 from sdodson/openshift_examples
Openshift examples
Diffstat (limited to 'roles')
50 files changed, 17958 insertions, 0 deletions
diff --git a/roles/openshift_examples/README.md b/roles/openshift_examples/README.md new file mode 100644 index 000000000..787624ab6 --- /dev/null +++ b/roles/openshift_examples/README.md @@ -0,0 +1,45 @@ +OpenShift Examples +================ + +Installs example image streams, db-templates, and quickstart-templates by copying +examples from this module to your first master and importing them with oc create -n into the openshift namespace + +Requirements +------------ + +Role Variables +-------------- + +| Name                                | Default value                                       |                                          | +|-------------------------------------|-----------------------------------------------------|------------------------------------------| +| openshift_examples_load_centos      | true when openshift_deployment_typenot 'enterprise' | Load centos image streams                | +| openshift_examples_load_rhel        | true if openshift_deployment_type is 'enterprise'   | Load rhel image streams                  | +| openshift_examples_load_db_templates| true                                                | Loads databcase templates                | +| openshift_examples_load_quickstarts | true                                                | Loads quickstarts ie: nodejs, rails, etc | +| openshift_examples_load_xpaas       | false                                               | Loads xpass streams and templates        | + + +Dependencies +------------ + +Example Playbook +---------------- + +TODO +---- +Currently we use `oc create -f` against various files and we accept non zero return code as a success +if (and only iff) stderr also contains the string 'already exists'. This means that if one object in the file exists already +but others fail to create you won't be aware of the failure. This also means that we do not currently support +updating existing objects. + +We should add the ability to compare existing image streams against those we're being asked to load and update if necessary. + +License +------- + +Apache License, Version 2.0 + +Author Information +------------------ + +Scott Dodson (sdodson@redhat.com) diff --git a/roles/openshift_examples/defaults/main.yml b/roles/openshift_examples/defaults/main.yml new file mode 100644 index 000000000..0f8e9f7ee --- /dev/null +++ b/roles/openshift_examples/defaults/main.yml @@ -0,0 +1,16 @@ +--- +# By default install rhel and xpaas streams on enterprise installs +openshift_examples_load_centos: "{{ openshift_deployment_type != 'enterprise' }}" +openshift_examples_load_rhel: "{{ openshift_deployment_type == 'enterprise' }}" +openshift_examples_load_db_templates: true +openshift_examples_load_xpaas: false +openshift_examples_load_quickstarts: true + +examples_base: /usr/share/openshift/examples +image_streams_base: "{{ examples_base }}/image-streams" +centos_image_streams: "{{ image_streams_base}}/image-streams-centos7.json" +rhel_image_streams: "{{ image_streams_base}}/image-streams-rhel7.json" +db_templates_base: "{{ examples_base }}/db-templates" +xpaas_image_streams: "{{ examples_base }}/xpaas-streams/jboss-image-streams.json" +xpaas_templates_base: "{{ examples_base }}/xpaas-templates" +quickstarts_base: "{{ examples_base }}/quickstart-templates" diff --git a/roles/openshift_examples/files/examples/db-templates/mongodb-ephemeral-template.json b/roles/openshift_examples/files/examples/db-templates/mongodb-ephemeral-template.json new file mode 100644 index 000000000..6252da2ec --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/mongodb-ephemeral-template.json @@ -0,0 +1,179 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "mongodb-ephemeral", +    "creationTimestamp": null, +    "annotations": { +      "description": "MongoDB database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-mongodb", +      "tags": "database,mongodb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "mongo", +            "protocol": "TCP", +            "port": 27017, +            "targetPort": 27017, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mongodb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mongodb:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mongodb", +                "image": "mongodb", +                "ports": [ +                  { +                    "containerPort": 27017, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "MONGODB_USER", +                    "value": "${MONGODB_USER}" +                  }, +                  { +                    "name": "MONGODB_PASSWORD", +                    "value": "${MONGODB_PASSWORD}" +                  }, +                  { +                    "name": "MONGODB_DATABASE", +                    "value": "${MONGODB_DATABASE}" +                  }, +                  { +                    "name": "MONGODB_ADMIN_PASSWORD", +                    "value": "${MONGODB_ADMIN_PASSWORD}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mongodb/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mongodb" +    }, +    { +      "name": "MONGODB_USER", +      "description": "Username for MongoDB user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MONGODB_PASSWORD", +      "description": "Password for the MongoDB user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "MONGODB_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    }, +    { +      "name": "MONGODB_ADMIN_PASSWORD", +      "description": "Password for the database admin user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    } +  ], +  "labels": { +    "template": "mongodb-ephemeral-template" +  } +} diff --git a/roles/openshift_examples/files/examples/db-templates/mongodb-persistent-template.json b/roles/openshift_examples/files/examples/db-templates/mongodb-persistent-template.json new file mode 100644 index 000000000..ff19a4834 --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/mongodb-persistent-template.json @@ -0,0 +1,201 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "mongodb-persistent", +    "creationTimestamp": null, +    "annotations": { +      "description": "MongoDB database service, with persistent storage. Scaling to more than one replica is not supported", +      "iconClass": "icon-mongodb", +      "tags": "database,mongodb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "mongo", +            "protocol": "TCP", +            "port": 27017, +            "targetPort": 27017, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "PersistentVolumeClaim", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "accessModes": [ +          "ReadWriteMany" +        ], +        "resources": { +          "requests": { +            "storage": "${VOLUME_CAPACITY}" +          } +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mongodb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mongodb:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mongodb", +                "image": "mongodb", +                "ports": [ +                  { +                    "containerPort": 27017, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "MONGODB_USER", +                    "value": "${MONGODB_USER}" +                  }, +                  { +                    "name": "MONGODB_PASSWORD", +                    "value": "${MONGODB_PASSWORD}" +                  }, +                  { +                    "name": "MONGODB_DATABASE", +                    "value": "${MONGODB_DATABASE}" +                  }, +                  { +                    "name": "MONGODB_ADMIN_PASSWORD", +                    "value": "${MONGODB_ADMIN_PASSWORD}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mongodb/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "persistentVolumeClaim": { +                  "claimName": "mongodb" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mongodb" +    }, +    { +      "name": "MONGODB_USER", +      "description": "Username for MongoDB user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MONGODB_PASSWORD", +      "description": "Password for the MongoDB user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "MONGODB_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    }, +    { +      "name": "MONGODB_ADMIN_PASSWORD", +      "description": "Password for the database admin user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "VOLUME_CAPACITY", +      "description": "Volume space available for data, e.g. 512Mi, 2Gi", +      "value": "512Mi" +    } +  ], +  "labels": { +    "template": "mongodb-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/db-templates/mysql-ephemeral-template.json b/roles/openshift_examples/files/examples/db-templates/mysql-ephemeral-template.json new file mode 100644 index 000000000..697a4ad68 --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/mysql-ephemeral-template.json @@ -0,0 +1,169 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "mysql-ephemeral", +    "creationTimestamp": null, +    "annotations": { +      "description": "MySQL database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-mysql-database", +      "tags": "database,mysql" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "mysql", +            "protocol": "TCP", +            "port": 3306, +            "targetPort": 3306, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mysql" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mysql:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mysql", +                "image": "mysql", +                "ports": [ +                  { +                    "containerPort": 3306, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mysql" +    }, +    { +      "name": "MYSQL_USER", +      "description": "Username for MySQL user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MYSQL_PASSWORD", +      "description": "Password for the MySQL user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "MYSQL_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    } +  ], +  "labels": { +    "template": "mysql-ephemeral-template" +  } +} diff --git a/roles/openshift_examples/files/examples/db-templates/mysql-persistent-template.json b/roles/openshift_examples/files/examples/db-templates/mysql-persistent-template.json new file mode 100644 index 000000000..90225e9c3 --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/mysql-persistent-template.json @@ -0,0 +1,191 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "mysql-persistent", +    "creationTimestamp": null, +    "annotations": { +      "description": "MySQL database service, with persistent storage. Scaling to more than one replica is not supported", +      "iconClass": "icon-mysql-database", +      "tags": "database,mysql" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "mysql", +            "protocol": "TCP", +            "port": 3306, +            "targetPort": 3306, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "PersistentVolumeClaim", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "accessModes": [ +          "ReadWriteMany" +        ], +        "resources": { +          "requests": { +            "storage": "${VOLUME_CAPACITY}" +          } +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mysql" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mysql:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mysql", +                "image": "mysql", +                "ports": [ +                  { +                    "containerPort": 3306, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "persistentVolumeClaim": { +                  "claimName": "mysql" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mysql" +    }, +    { +      "name": "MYSQL_USER", +      "description": "Username for MySQL user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MYSQL_PASSWORD", +      "description": "Password for the MySQL user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "MYSQL_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    }, +    { +      "name": "VOLUME_CAPACITY", +      "description": "Volume space available for data, e.g. 512Mi, 2Gi", +      "value": "512Mi" +    } +  ], +  "labels": { +    "template": "mysql-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/db-templates/postgresql-ephemeral-template.json b/roles/openshift_examples/files/examples/db-templates/postgresql-ephemeral-template.json new file mode 100644 index 000000000..6922baa12 --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/postgresql-ephemeral-template.json @@ -0,0 +1,169 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "postgresql-ephemeral", +    "creationTimestamp": null, +    "annotations": { +      "description": "PostgreSQL database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-postgresql", +      "tags": "database,postgresql" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "postgresql", +            "protocol": "TCP", +            "port": 5432, +            "targetPort": 5432, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "postgresql" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "postgresql:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "postgresql", +                "image": "postgresql", +                "ports": [ +                  { +                    "containerPort": 5432, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "POSTGRESQL_USER", +                    "value": "${POSTGRESQL_USER}" +                  }, +                  { +                    "name": "POSTGRESQL_PASSWORD", +                    "value": "${POSTGRESQL_PASSWORD}" +                  }, +                  { +                    "name": "POSTGRESQL_DATABASE", +                    "value": "${POSTGRESQL_DATABASE}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/pgsql/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mysql" +    }, +    { +      "name": "POSTGRESQL_USER", +      "description": "Username for PostgreSQL user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "POSTGRESQL_PASSWORD", +      "description": "Password for the PostgreSQL user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "POSTGRESQL_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    } +  ], +  "labels": { +    "template": "postgresql-ephemeral-template" +  } +} diff --git a/roles/openshift_examples/files/examples/db-templates/postgresql-persistent-template.json b/roles/openshift_examples/files/examples/db-templates/postgresql-persistent-template.json new file mode 100644 index 000000000..43162d8bb --- /dev/null +++ b/roles/openshift_examples/files/examples/db-templates/postgresql-persistent-template.json @@ -0,0 +1,191 @@ +{ +  "kind": "Template", +  "apiVersion": "v1beta3", +  "metadata": { +    "name": "postgresql-persistent", +    "creationTimestamp": null, +    "annotations": { +      "description": "PostgreSQL database service, with persistent storage. Scaling to more than one replica is not supported", +      "iconClass": "icon-postgresql", +      "tags": "database,postgresql" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "ports": [ +          { +            "name": "postgresql", +            "protocol": "TCP", +            "port": 5432, +            "targetPort": 5432, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      }, +      "status": { +        "loadBalancer": {} +      } +    }, +    { +      "kind": "PersistentVolumeClaim", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "accessModes": [ +          "ReadWriteMany" +        ], +        "resources": { +          "requests": { +            "storage": "${VOLUME_CAPACITY}" +          } +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "resources": {} +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "postgresql" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "postgresql:latest", +                "namespace": "openshift" +              }, +              "lastTriggeredImage": "" +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "postgresql", +                "image": "postgresql", +                "ports": [ +                  { +                    "containerPort": 5432, +                    "protocol": "TCP" +                  } +                ], +                "env": [ +                  { +                    "name": "POSTGRESQL_USER", +                    "value": "${POSTGRESQL_USER}" +                  }, +                  { +                    "name": "POSTGRESQL_PASSWORD", +                    "value": "${POSTGRESQL_PASSWORD}" +                  }, +                  { +                    "name": "POSTGRESQL_DATABASE", +                    "value": "${POSTGRESQL_DATABASE}" +                  } +                ], +                "resources": {}, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/pgsql/data" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "persistentVolumeClaim": { +                  "claimName": "postgresql" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      }, +      "status": {} +    } +  ], +  "parameters": [ +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mysql" +    }, +    { +      "name": "POSTGRESQL_USER", +      "description": "Username for PostgreSQL user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "POSTGRESQL_PASSWORD", +      "description": "Password for the PostgreSQL user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "POSTGRESQL_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    }, +    { +      "name": "VOLUME_CAPACITY", +      "description": "Volume space available for data, e.g. 512Mi, 2Gi", +      "value": "512Mi" +    } +  ], +  "labels": { +    "template": "postgresql-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/image-streams/image-streams-centos7.json b/roles/openshift_examples/files/examples/image-streams/image-streams-centos7.json new file mode 100644 index 000000000..712a43a11 --- /dev/null +++ b/roles/openshift_examples/files/examples/image-streams/image-streams-centos7.json @@ -0,0 +1,256 @@ +{ +  "kind": "ImageStreamList", +  "apiVersion": "v1beta3", +  "metadata": {}, +  "items": [ +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "ruby", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/ruby-20-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "2.0", +            "annotations": { +              "description": "Build and run Ruby 2.0 applications", +              "iconClass": "icon-ruby", +              "tags": "builder,ruby", +              "supports": "ruby:2.0,ruby", +              "version": "2.0" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "nodejs", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/nodejs-010-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "0.10", +            "annotations": { +              "description": "Build and run NodeJS 0.10 applications", +              "iconClass": "icon-nodejs", +              "tags": "builder,nodejs", +              "supports":"nodejs:0.10,nodejs:0.1,nodejs", +              "version": "0.10" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "perl", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/perl-516-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.16", +            "annotations": { +              "description": "Build and run Perl 5.16 applications", +              "iconClass": "icon-perl", +              "tags": "builder,perl", +              "supports":"perl:5.16,perl", +              "version": "5.16" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "php", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/php-55-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.5", +            "annotations": { +              "description": "Build and run PHP 5.5 applications", +              "iconClass": "icon-php", +              "tags": "builder,php", +              "supports":"php:5.5,php", +              "version": "5.5" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "python", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/python-33-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "3.3", +            "annotations": { +              "description": "Build and run Python 3.3 applications", +              "iconClass": "icon-python", +              "tags": "builder,python", +              "supports":"python:3.3,python", +              "version": "3.3" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "wildfly", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/wildfly-8-centos", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "8", +            "annotations": { +              "description": "Build and run Java applications on Wildfly 8", +              "iconClass": "icon-wildfly", +              "tags": "builder,wildfly,java", +              "supports":"wildfly:8,jee,java", +              "version": "8" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "mysql", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/mysql-55-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.5", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "postgresql", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/postgresql-92-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "9.2", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "mongodb", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "openshift/mongodb-24-centos7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "2.4", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/image-streams/image-streams-rhel7.json b/roles/openshift_examples/files/examples/image-streams/image-streams-rhel7.json new file mode 100644 index 000000000..a5d2e9d9f --- /dev/null +++ b/roles/openshift_examples/files/examples/image-streams/image-streams-rhel7.json @@ -0,0 +1,226 @@ +{ +  "kind": "ImageStreamList", +  "apiVersion": "v1beta3", +  "metadata": {}, +  "items": [ +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "ruby", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/ruby-20-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "2.0", +            "annotations": { +              "description": "Build and run Ruby 2.0 applications", +              "iconClass": "icon-ruby", +              "tags": "builder,ruby", +              "supports": "ruby:2.0,ruby", +              "version": "2.0" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "nodejs", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/nodejs-010-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "0.10", +            "annotations": { +              "description": "Build and run NodeJS 0.10 applications", +              "iconClass": "icon-nodejs", +              "tags": "builder,nodejs", +              "supports":"nodejs:0.10,nodejs:0.1,nodejs", +              "version": "0.10" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "perl", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/perl-516-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.16", +            "annotations": { +              "description": "Build and run Perl 5.16 applications", +              "iconClass": "icon-perl", +              "tags": "builder,perl", +              "supports":"perl:5.16,perl", +              "version": "5.16" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "php", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/php-55-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.5", +            "annotations": { +              "description": "Build and run PHP 5.5 applications", +              "iconClass": "icon-php", +              "tags": "builder,php", +              "supports":"php:5.5,php", +              "version": "5.5" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "python", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/python-33-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "3.3", +            "annotations": { +              "description": "Build and run Python 3.3 applications", +              "iconClass": "icon-python", +              "tags": "builder,python", +              "supports":"python:3.3,python", +              "version": "3.3" +            }, +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "mysql", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/mysql-55-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "5.5", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "postgresql", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/postgresql-92-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "9.2", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1beta3", +      "metadata": { +        "name": "mongodb", +        "creationTimestamp": null +      }, +      "spec": { +        "dockerImageRepository": "registry.access.redhat.com/openshift3/mongodb-24-rhel7", +        "tags": [ +          { +            "name": "latest" +          }, +          { +            "name": "2.4", +            "from": { +              "Kind": "ImageStreamTag", +              "Name": "latest" +            } +          } +        ] +      } +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/cakephp-mysql.json b/roles/openshift_examples/files/examples/quickstart-templates/cakephp-mysql.json new file mode 100644 index 000000000..e5699bce7 --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/cakephp-mysql.json @@ -0,0 +1,364 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "cakephp-mysql-example", +    "annotations": { +      "description": "An example CakePHP application with a MySQL database", +      "tags": "instant-app,php,cakephp,mysql", +      "iconClass": "icon-php" +    } +  }, +  "labels": { +    "template": "cakephp-mysql-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "cakephp-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "cakephp-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "php:5.5" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "cakephp-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling", +          "recreateParams": { +          "pre": { +              "failurePolicy": "Abort", +              "execNewPod": { +                "command": [ +                  "./migrate-database.sh" +                ], +                "containerName": "cakephp-example" +              } +            } +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "cakephp-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "cakephp-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "cakephp-frontend" +        }, +        "template": { +          "metadata": { +            "name": "cakephp-frontend", +            "labels": { +              "name": "cakephp-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "cakephp-example", +                "image": "cakephp-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "DATABASE_ENGINE", +                    "value": "${DATABASE_ENGINE}" +                  }, +                  { +                    "name": "DATABASE_NAME", +                    "value": "${DATABASE_NAME}" +                  }, +                  { +                    "name": "DATABASE_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "DATABASE_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "CAKEPHP_SECRET_TOKEN", +                    "value": "${CAKEPHP_SECRET_TOKEN}" +                  }, +                  { +                    "name": "CAKEPHP_SECURITY_SALT", +                    "value": "${CAKEPHP_SECURITY_SALT}" +                  }, +                  { +                    "name": "CAKEPHP_SECURITY_CIPHER_SEED", +                    "value": "${CAKEPHP_SECURITY_CIPHER_SEED}" +                  } +                ] +              } +            ] +          } +        } +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Exposes the database server" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "mysql", +            "port": 3306, +            "targetPort": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Defines how to deploy the database" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "name": "${DATABASE_SERVICE_NAME}", +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mysql", +                "image": "openshift/mysql-55-centos7", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${DATABASE_NAME}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/cakephp-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the CakePHP service", +      "value": "cakephp-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mysql" +    }, +    { +      "name": "DATABASE_ENGINE", +      "description": "Database engine: postgresql, mysql or sqlite (default)", +      "value": "mysql" +    }, +    { +      "name": "DATABASE_NAME", +      "description": "Database name", +      "value": "default" +    }, +    { +      "name": "DATABASE_USER", +      "description": "Database user name", +      "value": "cakephp" +    }, +    { +      "name": "DATABASE_PASSWORD", +      "description": "Database user password", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "CAKEPHP_SECRET_TOKEN", +      "description": "Set this to a long random string", +      "generate": "expression", +      "from": "[\\w]{50}" +    }, +    { +      "name": "CAKEPHP_SECURITY_SALT", +      "description": "Security salt for session hash", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "CAKEPHP_SECURITY_CIPHER_SEED", +      "description": "Security cipher seed for session hash", +      "generate": "expression", +      "from": "[0-9]{30}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/cakephp.json b/roles/openshift_examples/files/examples/quickstart-templates/cakephp.json new file mode 100644 index 000000000..09521add4 --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/cakephp.json @@ -0,0 +1,266 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "cakephp-example", +    "annotations": { +      "description": "An example CakePHP application with no database", +      "tags": "instant-app,php,cakephp", +      "iconClass": "icon-php" +    } +  }, +  "labels": { +    "template": "cakephp-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "cakephp-frontend"  +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "cakephp-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "php:5.5" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "cakephp-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "cakephp-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "cakephp-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "cakephp-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "cakephp-frontend" +        }, +        "template": { +          "metadata": { +            "name": "cakephp-frontend", +            "labels": { +              "name": "cakephp-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "cakephp-example", +                "image": "cakephp-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "DATABASE_ENGINE", +                    "value": "${DATABASE_ENGINE}" +                  }, +                  { +                    "name": "DATABASE_NAME", +                    "value": "${DATABASE_NAME}" +                  }, +                  { +                    "name": "DATABASE_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "DATABASE_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "CAKEPHP_SECRET_TOKEN", +                    "value": "${CAKEPHP_SECRET_TOKEN}" +                  }, +                  { +                    "name": "CAKEPHP_SECURITY_SALT", +                    "value": "${CAKEPHP_SECURITY_SALT}" +                  }, +                  { +                    "name": "CAKEPHP_SECURITY_CIPHER_SEED", +                    "value": "${CAKEPHP_SECURITY_CIPHER_SEED}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/cakephp-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the CakePHP service", +      "value": "cakephp-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name" +    }, +    { +      "name": "DATABASE_ENGINE", +      "description": "Database engine: postgresql, mysql or sqlite (default)" +    }, +    { +      "name": "DATABASE_NAME", +      "description": "Database name" +    }, +    { +      "name": "DATABASE_USER", +      "description": "Database user name" +    }, +    { +      "name": "DATABASE_PASSWORD", +      "description": "Database user password" +    }, +    { +      "name": "CAKEPHP_SECRET_TOKEN", +      "description": "Set this to a long random string", +      "generate": "expression", +      "from": "[\\w]{50}" +    }, +    { +      "name": "CAKEPHP_SECURITY_SALT", +      "description": "Security salt for session hash", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "CAKEPHP_SECURITY_CIPHER_SEED", +      "description": "Security cipher seed for session hash", +      "generate": "expression", +      "from": "[0-9]{30}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/dancer-mysql.json b/roles/openshift_examples/files/examples/quickstart-templates/dancer-mysql.json new file mode 100644 index 000000000..fc92a1d6c --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/dancer-mysql.json @@ -0,0 +1,334 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "dancer-mysql-example", +    "annotations": { +      "description": "An example Dancer application with a MySQL database", +      "tags": "instant-app,perl,dancer,mysql", +      "iconClass": "icon-perl" +    } +  }, +  "labels": { +    "template": "dancer-mysql-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "dancer-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "dancer-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "perl:5.16" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "dancer-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "dancer-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "dancer-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "dancer-frontend" +        }, +        "template": { +          "metadata": { +            "name": "dancer-frontend", +            "labels": { +              "name": "dancer-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "dancer-example", +                "image": "dancer-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  }, +                  { +                    "name": "SECRET_KEY_BASE", +                    "value": "${SECRET_KEY_BASE}" +                  } +                ] +              } +            ] +          } +        } +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Exposes the database server" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "mysql", +            "port": 3306, +            "targetPort": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Defines how to deploy the database" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "name": "${DATABASE_SERVICE_NAME}", +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mysql", +                "image": "openshift/mysql-55-centos7", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/dancer-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Dancer service", +      "value": "dancer-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "ADMIN_USERNAME", +      "description": "administrator username", +      "generate": "expression", +      "from": "admin[A-Z0-9]{3}" +    }, +    { +      "name": "ADMIN_PASSWORD", +      "description": "administrator password", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{8}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "database" +    }, +    { +      "name": "MYSQL_USER", +      "description": "database username", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MYSQL_PASSWORD", +      "description": "database password", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{8}" +    }, +    { +      "name": "MYSQL_DATABASE", +      "description": "database name", +      "value": "sampledb" +    }, +    { +      "name": "SECRET_KEY_BASE", +      "description": "Your secret key for verifying the integrity of signed cookies", +      "generate": "expression", +      "from": "[a-z0-9]{127}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/dancer.json b/roles/openshift_examples/files/examples/quickstart-templates/dancer.json new file mode 100644 index 000000000..829f50bae --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/dancer.json @@ -0,0 +1,200 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "dancer-example", +    "annotations": { +      "description": "An example Dancer application with no database", +      "tags": "instant-app,perl,dancer", +      "iconClass": "icon-perl" +    } +  }, +  "labels": { +    "template": "dancer-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "dancer-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "dancer-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "perl:5.16" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "dancer-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "dancer-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "dancer-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "dancer-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "dancer-frontend" +        }, +        "template": { +          "metadata": { +            "name": "dancer-frontend", +            "labels": { +              "name": "dancer-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "dancer-example", +                "image": "dancer-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/dancer-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Dancer service", +      "value": "dancer-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "SECRET_KEY_BASE", +      "description": "Your secret key for verifying the integrity of signed cookies", +      "generate": "expression", +      "from": "[a-z0-9]{127}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/django-postgresql.json b/roles/openshift_examples/files/examples/quickstart-templates/django-postgresql.json new file mode 100644 index 000000000..c46476e8a --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/django-postgresql.json @@ -0,0 +1,341 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "django-postgresql-example", +    "annotations": { +      "description": "An example Django application with a PostgreSQL database", +      "tags": "instant-app,python,django,postgresql", +      "iconClass": "icon-python" +    } +  }, +  "labels": { +    "template": "django-postgresql-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "django-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "django-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "python:3.3" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "django-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "django-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "django-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "django-frontend" +        }, +        "template": { +          "metadata": { +            "name": "django-frontend", +            "labels": { +              "name": "django-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "django-example", +                "image": "django-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "DATABASE_ENGINE", +                    "value": "${DATABASE_ENGINE}" +                  }, +                  { +                    "name": "DATABASE_NAME", +                    "value": "${DATABASE_NAME}" +                  }, +                  { +                    "name": "DATABASE_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "DATABASE_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "APP_CONFIG", +                    "value": "${APP_CONFIG}" +                  }, +                  { +                    "name": "DJANGO_SECRET_KEY", +                    "value": "${DJANGO_SECRET_KEY}" +                  } +                ] +              } +            ] +          } +        } +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Exposes the database server" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "postgresql", +            "port": 5432, +            "targetPort": 5432 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Defines how to deploy the database" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "name": "${DATABASE_SERVICE_NAME}", +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "postgresql", +                "image": "openshift/postgresql-92-centos7", +                "ports": [ +                  { +                    "containerPort": 5432 +                  } +                ], +                "env": [ +                  { +                    "name": "POSTGRESQL_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "POSTGRESQL_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "POSTGRESQL_DATABASE", +                    "value": "${DATABASE_NAME}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/django-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Django service", +      "value": "django-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "postgresql" +    }, +    { +      "name": "DATABASE_ENGINE", +      "description": "Database engine: postgresql, mysql or sqlite (default)", +      "value": "postgresql" +    }, +    { +      "name": "DATABASE_NAME", +      "description": "Database name", +      "value": "default" +    }, +    { +      "name": "DATABASE_USER", +      "description": "Database user name", +      "value": "django" +    }, +    { +      "name": "DATABASE_PASSWORD", +      "description": "Database user password", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "APP_CONFIG", +      "description": "Relative path to Gunicorn configuration file (optional)" +    }, +    { +      "name": "DJANGO_SECRET_KEY", +      "description": "Set this to a long random string", +      "generate": "expression", +      "from": "[\\w]{50}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/django.json b/roles/openshift_examples/files/examples/quickstart-templates/django.json new file mode 100644 index 000000000..74bbea163 --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/django.json @@ -0,0 +1,254 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "django-example", +    "annotations": { +      "description": "An example Django application with no database", +      "tags": "instant-app,python,django", +      "iconClass": "icon-python" +    } +  }, +  "labels": { +    "template": "django-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "django-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "django-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "python:3.3" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "django-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "django-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "django-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "django-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "django-frontend" +        }, +        "template": { +          "metadata": { +            "name": "django-frontend", +            "labels": { +              "name": "django-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "django-example", +                "image": "django-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "DATABASE_ENGINE", +                    "value": "${DATABASE_ENGINE}" +                  }, +                  { +                    "name": "DATABASE_NAME", +                    "value": "${DATABASE_NAME}" +                  }, +                  { +                    "name": "DATABASE_USER", +                    "value": "${DATABASE_USER}" +                  }, +                  { +                    "name": "DATABASE_PASSWORD", +                    "value": "${DATABASE_PASSWORD}" +                  }, +                  { +                    "name": "APP_CONFIG", +                    "value": "${APP_CONFIG}" +                  }, +                  { +                    "name": "DJANGO_SECRET_KEY", +                    "value": "${DJANGO_SECRET_KEY}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/django-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Django service", +      "value": "django-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name" +    }, +    { +      "name": "DATABASE_ENGINE", +      "description": "Database engine: postgresql, mysql or sqlite (default)" +    }, +    { +      "name": "DATABASE_NAME", +      "description": "Database name" +    }, +    { +      "name": "DATABASE_USER", +      "description": "Database user name" +    }, +    { +      "name": "DATABASE_PASSWORD", +      "description": "Database user password" +    }, +    { +      "name": "APP_CONFIG", +      "description": "Relative path to Gunicorn configuration file (optional)" +    }, +    { +      "name": "DJANGO_SECRET_KEY", +      "description": "Set this to a long random string", +      "generate": "expression", +      "from": "[\\w]{50}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/nodejs-mongodb.json b/roles/openshift_examples/files/examples/quickstart-templates/nodejs-mongodb.json new file mode 100644 index 000000000..cd9e5faf0 --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/nodejs-mongodb.json @@ -0,0 +1,329 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "nodejs-mongodb-example", +    "annotations": { +      "description": "An example Node.js application with a MongoDB database", +      "tags": "instant-app,nodejs,mongodb", +      "iconClass": "icon-nodejs" +    } +  }, +  "labels": { +    "template": "nodejs-mongodb-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "nodejs-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "nodejs-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "nodejs:0.10" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "nodejs-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "nodejs-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "nodejs-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "nodejs-frontend" +        }, +        "template": { +          "metadata": { +            "name": "nodejs-frontend", +            "labels": { +              "name": "nodejs-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "nodejs-example", +                "image": "nodejs-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "MONGODB_USER", +                    "value": "${MONGODB_USER}" +                  }, +                  { +                    "name": "MONGODB_PASSWORD", +                    "value": "${MONGODB_PASSWORD}" +                  }, +                  { +                    "name": "MONGODB_DATABASE", +                    "value": "${MONGODB_DATABASE}" +                  }, +                  { +                    "name": "MONGODB_ADMIN_PASSWORD", +                    "value": "${MONGODB_ADMIN_PASSWORD}" +                  } +                ] +              } +            ] +          } +        } +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Exposes the database server" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "mongodb", +            "port": 27017, +            "targetPort": 27017 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Defines how to deploy the database" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "name": "${DATABASE_SERVICE_NAME}", +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mongodb", +                "image": "openshift/mongodb-24-centos7", +                "ports": [ +                  { +                    "containerPort": 27017 +                  } +                ], +                "env": [ +                  { +                    "name": "MONGODB_USER", +                    "value": "${MONGODB_USER}" +                  }, +                  { +                    "name": "MONGODB_PASSWORD", +                    "value": "${MONGODB_PASSWORD}" +                  }, +                  { +                    "name": "MONGODB_DATABASE", +                    "value": "${MONGODB_DATABASE}" +                  }, +                  { +                    "name": "MONGODB_ADMIN_PASSWORD", +                    "value": "${MONGODB_ADMIN_PASSWORD}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/nodejs-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Node.js service", +      "value": "nodejs-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "mongodb" +    }, +    { +      "name": "MONGODB_USER", +      "description": "Username for MongoDB user that will be used for accessing the database", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "MONGODB_PASSWORD", +      "description": "Password for the MongoDB user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    }, +    { +      "name": "MONGODB_DATABASE", +      "description": "Database name", +      "value": "sampledb" +    }, +    { +      "name": "MONGODB_ADMIN_PASSWORD", +      "description": "Password for the database admin user", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/nodejs.json b/roles/openshift_examples/files/examples/quickstart-templates/nodejs.json new file mode 100644 index 000000000..ff7dd574e --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/nodejs.json @@ -0,0 +1,236 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "nodejs-example", +    "annotations": { +      "description": "An example Node.js application with no database", +      "tags": "instant-app,nodejs", +      "iconClass": "icon-nodejs" +    } +  }, +  "labels": { +    "template": "nodejs-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "nodejs-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "nodejs-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "nodejs:0.10" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "nodejs-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "nodejs-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Rolling" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "nodejs-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "nodejs-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "nodejs-frontend" +        }, +        "template": { +          "metadata": { +            "name": "nodejs-frontend", +            "labels": { +              "name": "nodejs-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "nodejs-example", +                "image": "nodejs-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "MONGODB_USER", +                    "value": "${MONGODB_USER}" +                  }, +                  { +                    "name": "MONGODB_PASSWORD", +                    "value": "${MONGODB_PASSWORD}" +                  }, +                  { +                    "name": "MONGODB_DATABASE", +                    "value": "${MONGODB_DATABASE}" +                  }, +                  { +                    "name": "MONGODB_ADMIN_PASSWORD", +                    "value": "${MONGODB_ADMIN_PASSWORD}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/nodejs-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Node.js service", +      "value": "nodejs-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name" +    }, +    { +      "name": "MONGODB_USER", +      "description": "Username for MongoDB user that will be used for accessing the database" +    }, +    { +      "name": "MONGODB_PASSWORD", +      "description": "Password for the MongoDB user" +    }, +    { +      "name": "MONGODB_DATABASE", +      "description": "Database name" +    }, +    { +      "name": "MONGODB_ADMIN_PASSWORD", +      "description": "Password for the database admin user" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/quickstart-templates/rails-postgresql.json b/roles/openshift_examples/files/examples/quickstart-templates/rails-postgresql.json new file mode 100644 index 000000000..ec7da77e3 --- /dev/null +++ b/roles/openshift_examples/files/examples/quickstart-templates/rails-postgresql.json @@ -0,0 +1,388 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "rails-postgresql-example", +    "annotations": { +      "description": "An example Rails application with a PostgreSQL database", +      "tags": "instant-app,ruby,rails,postgresql", +      "iconClass": "icon-ruby" +    } +  }, +  "labels": { +    "template": "rails-postgresql-example" +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "rails-frontend", +        "annotations": { +          "description": "Exposes and load balances the application pods" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "web", +            "port": 8080, +            "targetPort": 8080 +          } +        ], +        "selector": { +          "name": "rails-frontend" +        } +      } +    }, +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "rails-route" +      }, +      "spec": { +        "host": "${APPLICATION_DOMAIN}", +        "to": { +          "kind": "Service", +          "name": "rails-frontend" +        } +      } +    }, +    { +      "kind": "ImageStream", +      "apiVersion": "v1", +      "metadata": { +        "name": "rails-example", +        "annotations": { +          "description": "Keeps track of changes in the application image" +        } +      } +    }, +    { +      "kind": "BuildConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "rails-example", +        "annotations": { +          "description": "Defines how to build the application" +        } +      }, +      "spec": { +        "source": { +          "type": "Git", +          "git": { +            "uri": "${SOURCE_REPOSITORY_URL}", +            "ref": "${SOURCE_REPOSITORY_REF}" +          }, +          "contextDir": "${CONTEXT_DIR}" +        }, +        "strategy": { +          "type": "Source", +          "sourceStrategy": { +            "from": { +              "kind": "ImageStreamTag", +              "namespace": "openshift", +              "name": "ruby:2.0" +            } +          } +        }, +        "output": { +          "to": { +            "kind": "ImageStreamTag", +            "name": "rails-example:latest" +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange" +          }, +          { +            "type": "GitHub", +            "github": { +              "secret": "${GITHUB_WEBHOOK_SECRET}" +            } +          } +        ] +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "rails-frontend", +        "annotations": { +          "description": "Defines how to deploy the application server" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate", +          "recreateParams": { +          "pre": { +              "failurePolicy": "Abort", +              "execNewPod": { +                "command": [ +                  "./migrate-database.sh" +                ], +                "containerName": "rails-example" +              } +            } +          } +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "rails-example" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "rails-example:latest" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "rails-frontend" +        }, +        "template": { +          "metadata": { +            "name": "rails-frontend", +            "labels": { +              "name": "rails-frontend" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "rails-example", +                "image": "rails-example", +                "ports": [ +                  { +                    "containerPort": 8080 +                  } +                ], +                "env": [ +                  { +                    "name": "DATABASE_SERVICE_NAME", +                    "value": "${DATABASE_SERVICE_NAME}" +                  }, +                  { +                    "name": "POSTGRESQL_USER", +                    "value": "${POSTGRESQL_USER}" +                  }, +                  { +                    "name": "POSTGRESQL_PASSWORD", +                    "value": "${POSTGRESQL_PASSWORD}" +                  }, +                  { +                    "name": "POSTGRESQL_DATABASE", +                    "value": "${POSTGRESQL_DATABASE}" +                  }, +                  { +                    "name": "SECRET_KEY_BASE", +                    "value": "${SECRET_KEY_BASE}" +                  }, +                  { +                    "name": "POSTGRESQL_MAX_CONNECTIONS", +                    "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                  }, +                  { +                    "name": "POSTGRESQL_SHARED_BUFFERS", +                    "value": "${POSTGRESQL_SHARED_BUFFERS}" +                  }, +                  { +                    "name": "SECRET_KEY_BASE", +                    "value": "${SECRET_KEY_BASE}" +                  }, +                  { +                    "name": "APPLICATION_DOMAIN", +                    "value": "${APPLICATION_DOMAIN}" +                  }, +                  { +                    "name": "APPLICATION_USER", +                    "value": "${APPLICATION_USER}" +                  }, +                  { +                    "name": "APPLICATION_PASSWORD", +                    "value": "${APPLICATION_PASSWORD}" +                  } +                ] +              } +            ] +          } +        } +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Exposes the database server" +        } +      }, +      "spec": { +        "ports": [ +          { +            "name": "postgresql", +            "port": 5432, +            "targetPort": 5432 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}", +        "annotations": { +          "description": "Defines how to deploy the database" +        } +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "name": "${DATABASE_SERVICE_NAME}", +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "postgresql", +                "image": "openshift/postgresql-92-centos7", +                "ports": [ +                  { +                    "containerPort": 5432 +                  } +                ], +                "env": [ +                  { +                    "name": "POSTGRESQL_USER", +                    "value": "${POSTGRESQL_USER}" +                  }, +                  { +                    "name": "POSTGRESQL_PASSWORD", +                    "value": "${POSTGRESQL_PASSWORD}" +                  }, +                  { +                    "name": "POSTGRESQL_DATABASE", +                    "value": "${POSTGRESQL_DATABASE}" +                  }, +                  { +                    "name": "POSTGRESQL_MAX_CONNECTIONS", +                    "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                  }, +                  { +                    "name": "POSTGRESQL_SHARED_BUFFERS", +                    "value": "${POSTGRESQL_SHARED_BUFFERS}" +                  } +                ] +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "SOURCE_REPOSITORY_URL", +      "description": "The URL of the repository with your application source code", +      "value": "https://github.com/openshift/rails-ex.git" +    }, +    { +      "name": "SOURCE_REPOSITORY_REF", +      "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" +    }, +    { +      "name": "CONTEXT_DIR", +      "description": "Set this to the relative path to your project if it is not in the root of your repository" +    }, +    { +      "name": "APPLICATION_DOMAIN", +      "description": "The exposed hostname that will route to the Rails service", +      "value": "rails-example.openshiftapps.com" +    }, +    { +      "name": "GITHUB_WEBHOOK_SECRET", +      "description": "A secret string used to configure the GitHub webhook", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{40}" +    }, +    { +      "name": "SECRET_KEY_BASE", +      "description": "Your secret key for verifying the integrity of signed cookies", +      "generate": "expression", +      "from": "[a-z0-9]{127}" +    }, +    { +      "name": "APPLICATION_USER", +      "description": "The application user that is used within the sample application to authorize access on pages", +      "value": "openshift" +    }, +    { +      "name": "APPLICATION_PASSWORD", +      "description": "The application password that is used within the sample application to authorize access on pages", +      "value": "secret" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "description": "Database service name", +      "value": "postgresql" +    }, +    { +      "name": "POSTGRESQL_USER", +      "description": "database username", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}" +    }, +    { +      "name": "POSTGRESQL_PASSWORD", +      "description": "database password", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{8}" +    }, +    { +      "name": "POSTGRESQL_DATABASE", +      "description": "database name", +      "value": "root" +    }, +    { +      "name": "POSTGRESQL_MAX_CONNECTIONS", +      "description": "database max connections", +      "value": "10" +    }, +    { +      "name": "POSTGRESQL_SHARED_BUFFERS", +      "description": "database shared buffers", +      "value": "12MB" +    } +  ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-streams/jboss-image-streams.json b/roles/openshift_examples/files/examples/xpaas-streams/jboss-image-streams.json new file mode 100644 index 000000000..425cc3e0f --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-streams/jboss-image-streams.json @@ -0,0 +1,157 @@ +{ +    "kind": "List", +    "apiVersion": "v1", +    "metadata": { +        "name": "jboss-image-streams", +        "annotations": { +            "description": "ImageStream definitions for JBoss Middleware products." +        } +    }, +    "items": [ +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-webserver3-tomcat7-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-webserver-3/tomcat7-openshift", +                "tags": [ +                    { +                        "name": "3.0", +                        "annotations": { +                            "description": "JBoss Web Server v3 Tomcat 7 STI images.", +                            "iconClass": "icon-jboss", +                            "tags": "java", +                            "supports":"tomcat7:3.0,java", +                            "version": "3.0" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-webserver3-tomcat8-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-webserver-3/tomcat8-openshift", +                "tags": [ +                    { +                        "name": "3.0", +                        "annotations": { +                            "description": "JBoss Web Server v3 Tomcat 8 STI images.", +                            "iconClass": "icon-jboss", +                            "tags": "java", +                            "supports":"tomcat8:3.0,java", +                            "version": "3.0" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-eap6-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-eap-6/eap-openshift", +                "tags": [ +                    { +                        "name": "6.4", +                        "annotations": { +                            "description": "JBoss EAP 6 STI images.", +                            "iconClass": "icon-jboss", +                            "tags": "javaee", +                            "supports":"eap:6.4,jee,java", +                            "version": "6.4" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-amq-6" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-amq-6/amq-openshift:6.2", +                "tags": [ +                    { +                        "name": "6.2", +                        "annotations": { +                            "description": "JBoss ActiveMQ 6 broker image.", +                            "iconClass": "icon-jboss", +                            "tags": "javaee", +                            "supports":"amq:6.2,jee,java", +                            "version": "6.2" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-mysql-55", +                "annotations": { +                    "description": "Provides MySQL 5.5 images for use with JBoss Middleware products." +                } +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7", +                "tags": [ +                    { +                        "name": "latest", +                        "dockerImageReference": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest" +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-postgresql-92", +                "annotations": { +                    "description": "Provides PostgreSQL 9.2 images for use with JBoss Middleware products." +                } +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7", +                "tags": [ +                    { +                        "name": "latest", +                        "dockerImageReference": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest" +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-mongodb-24", +                "annotations": { +                    "description": "Provides MongoDB 2.4 images for use with JBoss Middleware products." +                } +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7", +                "tags": [ +                    { +                        "name": "latest", +                        "dockerImageReference": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest" +                    } +                ] +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/amq6-persistent.json b/roles/openshift_examples/files/examples/xpaas-templates/amq6-persistent.json new file mode 100644 index 000000000..00b63ce8c --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/amq6-persistent.json @@ -0,0 +1,399 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for ActiveMQ brokers using persistent storage." +        }, +        "name": "amq6-persistent" +    }, +    "labels": { +        "template": "amq6-persistent" +    }, +    "parameters": [ +        { +            "description": "ActiveMQ Release version, e.g. 6.2, etc.", +            "name": "AMQ_RELEASE", +            "value": "6.2" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "broker" +        }, +        { +            "description": "Protocol to configure.  Only openwire is supported by EAP.  amqp, amqp+ssl, mqtt, stomp, stomp+ssl, and ssl are not supported by EAP", +            "name": "MQ_PROTOCOL", +            "value": "openwire" +        }, +        { +            "description": "Queue names", +            "name": "MQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "MQ_TOPICS", +            "value": "" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "Broker user name", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Broker user password", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin User", +            "name": "AMQ_ADMIN_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin Password", +            "name": "AMQ_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5672, +                        "targetPort": 5672 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-amqp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's amqp port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5671, +                        "targetPort": 5671 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's amqp ssl port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 1883, +                        "targetPort": 1883 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-mqtt", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's mqtt port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61613, +                        "targetPort": 61613 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-stomp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's stomp port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61612, +                        "targetPort": 61612 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's stomp ssl port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61616, +                        "targetPort": 61616 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp (openwire) port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61617, +                        "targetPort": 61617 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp ssl (openwire) port." +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-amq" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-amq-6:${AMQ_RELEASE}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "registry.access.redhat.com/jboss-amq-6/amq-openshift:${AMQ_RELEASE}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -L -u ${AMQ_ADMIN_USERNAME}:${AMQ_ADMIN_PASSWORD} 'http://localhost:8161/hawtio/jolokia/read/org.apache.activemq:type=Broker,brokerName=*,service=Health/CurrentStatus' | grep -q '\"CurrentStatus\" *: *\"Good\"'" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data/kahadb", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_PROTOCOLS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "AMQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_USERNAME", +                                        "value": "${AMQ_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_PASSWORD", +                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-amq-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-amq-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/amq6.json b/roles/openshift_examples/files/examples/xpaas-templates/amq6.json new file mode 100644 index 000000000..0bb1b0651 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/amq6.json @@ -0,0 +1,366 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for ActiveMQ brokers." +        }, +        "name": "amq6" +    }, +    "labels": { +        "template": "amq6" +    }, +    "parameters": [ +        { +            "description": "ActiveMQ Release version, e.g. 6.2, etc.", +            "name": "AMQ_RELEASE", +            "value": "6.2" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "broker" +        }, +        { +            "description": "Protocol to configure.  Only openwire is supported by EAP.  amqp, amqp+ssl, mqtt, stomp, stomp+ssl, and ssl are not supported by EAP", +            "name": "MQ_PROTOCOL", +            "value": "openwire" +        }, +        { +            "description": "Queue names", +            "name": "MQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "MQ_TOPICS", +            "value": "" +        }, +        { +            "description": "Broker user name", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Broker user password", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin User", +            "name": "AMQ_ADMIN_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin Password", +            "name": "AMQ_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5672, +                        "targetPort": 5672 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-amqp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's amqp port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5671, +                        "targetPort": 5671 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's amqp ssl port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 1883, +                        "targetPort": 1883 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-mqtt", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's mqtt port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61613, +                        "targetPort": 61613 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-stomp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's stomp port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61612, +                        "targetPort": 61612 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's stomp ssl port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61616, +                        "targetPort": 61616 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp (openwire) port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61617, +                        "targetPort": 61617 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp ssl (openwire) port." +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-amq" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-amq-6:${AMQ_RELEASE}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "registry.access.redhat.com/jboss-amq-6/amq-openshift:${AMQ_RELEASE}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -L -u ${AMQ_ADMIN_USERNAME}:${AMQ_ADMIN_PASSWORD} 'http://localhost:8161/hawtio/jolokia/read/org.apache.activemq:type=Broker,brokerName=*,service=Health/CurrentStatus' | grep -q '\"CurrentStatus\" *: *\"Good\"'" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_PROTOCOLS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "AMQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_USERNAME", +                                        "value": "${AMQ_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_PASSWORD", +                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap-app-secret.json b/roles/openshift_examples/files/examples/xpaas-templates/eap-app-secret.json new file mode 100644 index 000000000..cfe038048 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap-app-secret.json @@ -0,0 +1,32 @@ +{ +    "kind": "List", +    "apiVersion": "v1", +    "metadata": {}, +    "items": [ +        { +            "kind": "ServiceAccount", +            "apiVersion": "v1", +            "metadata": { +                "name": "eap-service-account" +            }, +            "secrets": [ +                { +                    "name": "eap-app-secret" +                } +            ] +        }, +        { +            "kind": "Secret", +            "apiVersion": "v1", +            "metadata": { +                "annotations": { +                    "description": "Default secret file with name 'jboss' and password 'mykeystorepass'" +                }, +                "name": "eap-app-secret" +            }, +            "data": { +                "keystore.jks": "/u3+7QAAAAIAAAABAAAAAQAFamJvc3MAAAFNbVtLLAAABQMwggT/MA4GCisGAQQBKgIRAQEFAASCBOsxl4wqa+E+XP8+qMZY9XLhvKrRX8V1MHdwFZQaLTEVURCizqYXoMnbhtfV0oMAUFsE7013TTA9Q2l+pSs+cqz6HH/vwjEEIkqJx5wD8WcD/bu9e9F9EHQ+zrjZFmpMFvXsvj9+ux1o/YLBDGY3kd4MoDcJy0yJ/ZpzNYLkXanlrMhWqxC7MAliCBsdyVgNn5RFb4Nn+JZgJuNSIGo/K292+0IFaFv9vsXbX889W9HPCvfO0mQIzoy8In0NhzdKli/67y4kbDkWaI0fRONckZTxNpxn6rMc0nN9zKrGVToLxj1Ufcoj/tCvR8agtPpv7KIWUqBYDg83ad+i4EE5XYISovlsl6RmtrrTb39PJcL86+wJ+x2ZrLuyzh6C9sAOdSBiKt/DY97ICIYltRMrb+cNwWdnJvT+PeYvv3vKo7YThha+akoJDjsWMp1HWpbIC9zg9ZjugU+/ao6nHtmoZmCaYjLuEE+sYl5s179uyQjE3LRc+0cVY2+bYCOD6P6JLH9GdfjkR40OhjryiWy2Md6vAGaATh6kjjreRHfSie4KCgIZx9Ngb1+uAwauYSM8d9OIwT5lRmLd4Go9CaFXtFdq/IZv3x5ZEPVqMjxcq0KXcs1QcfK3oSYL/rrkxXxKFTrd0N3KgvwATWx/KS90tdHBg65dF3PpBjK1AYQL3Q7KV3t45SVyYHd92TUsaduY1nUQk4TukNC8l9f8xYVeOFXoFHZRx9edqn8fjDMmCYn5PTPNuMPHQm7nKxeWhV2URY5jt774gmvHLNcXeEgrM7US81wOvs2y1jY/paJWn+OACf2x2a75MWFFkZH67bZoh9pPWAwOUEtegXTL5QVicHjzZrop8Qb7K7hlGgD0RP5YYOFYF4DD+SL5BHKr6fw/LS6MMJaK1wKsJd0oGg9HcHXjph9Kb+mqXrQ54C1KI42LpFftU3DCg8wGoqvg/zO/UtVeHX3rBZDUIkeQrCULEkki9oL5diDxe9mNx9Qua5FJ6FJGIffQmsC4b0+Xys6NyqUu1aeWLcAPA/5hcs6ZTiSRTHTBe3vxapyBjnAL5uij4ILbWbEGH1e0mAHBeiihRx+w4oxH4OGCvXOhwIDHETLJJUcnJe1CouECdqdfVy/eEsIfiEheVs8OwogJLiWgzB7PoebXM4SKsAWL3NcDtC1LV3KuPgFuTDH7MjPIR83eSxkKlJLMNGfEpUHyg+lm7aJ98PVIS+l1YV9oUzLfbo3S6S2sMjVgyviS90vNIPo5JOTEFHsg5aWJNHL0OV4zRUeILzwwdQz+VkTk9DobnkLWUeLnwUNWheOpaQh79Mk0IfwfLj4D0Vx9p+PShKKZCGs0wjckmCFBM5Pc1x2lwMdaP5yATzrw+jUc+/3UY4PF/4Ya66m/DRsBKEcXjVAHcTce6OdNdGlBNT8VgkxPiylwO8hvyvpf6j+wdb9iXi6eOnk0AiEJ6mUAXs/eyDD/cqQjnUBKRGLQUSdHhvtpw8RfvyVhAAxNOnBsOT0WYol9iK6pSclGTF5mZleASRzZhH69GgdebfFhXimb0j/wYj3uLgf6mrKMDwlrXJ80SiWkXxd5TX/7XtB9lbPzNpaR12M8U8UVg16VOtMwCR2Gss2vmhqQnQFLsUsAKcYM0TRp1pWqbzpGebCvJkVWiIYocN3ZI1csAhGX3G86ewAAAAEABVguNTA5AAADeTCCA3UwggJdoAMCAQICBGekovEwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAk5DMRAwDgYDVQQHEwdSYWxlaWdoMRYwFAYDVQQKEw1teWNvbXBhbnkuY29tMRQwEgYDVQQLEwtFbmdpbmVlcmluZzEPMA0GA1UEAxMGanNtaXRoMB4XDTE1MDUxOTE4MDYxOFoXDTE1MDgxNzE4MDYxOFowazELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAk5DMRAwDgYDVQQHEwdSYWxlaWdoMRYwFAYDVQQKEw1teWNvbXBhbnkuY29tMRQwEgYDVQQLEwtFbmdpbmVlcmluZzEPMA0GA1UEAxMGanNtaXRoMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0zbGtem+If//jw0OTszIcpX4ydOCC0PeqktulYkm4pG0qEVBB+HuMj7yeTBc1KCDl2xm+Q6LPeTzUufk7BXFEg4Ru1l3PSW70LyJBfHy5ns0dYE5M1I0Avv9rvjgC1VTsiBmdXh+tIIQDPknIKpWpcs79XPOURGLvuGjfyj08EZWFvAZzYrk3lKwkceDHpYYb5i+zxFRz5K6of/h9gQ9CzslqNd7uxxvyy/yTtNFk2J797Vk3hKtbiATqc9+egEHcEQrzADejPYol5ke3DA1NPRBqFGku5n215i2eYzYvVV1xmifID/3lzvNWN0bWlOxl74VsPnWa/2JPP3hZ6p5QIDAQABoyEwHzAdBgNVHQ4EFgQURLJKk/gaSrMjDyX8iYtCzPtTBqAwDQYJKoZIhvcNAQELBQADggEBAA4ESTKsWevv40hFv11t+lGNHT16u8Xk+WnvB4Ko5sZjVhvRWTTKOEBE5bDYfMhf0esn8gg0B4Qtm4Rb5t9PeaG/0d6xxD0BIV6eWihJVtEGOH47Wf/UzfC88fqoIxZ6MMBPik/WeafvOK+HIHfZSwAmqlXgl4nNVDdMNHtBhNAvikL3osxrSbqdi3eyI7rqSpb41Lm9v+PF+vZTOGRQf22Gq30/Ie85DlqugtRKimWHJYL2HeL4ywTtQKgde6JDRCOHwbDcsl6CbMjugt3yyI7Yo9EJdKb5p6YoVOpnCz7369W9Uim+Xrl2ELZWM5WTiQFxd6S36Ql2TUk+s8zj/GoN9ov0Y/yNNCxAibwyzo94N+Q4vA==" +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-persistent-sti.json new file mode 100644 index 000000000..2a9c06bee --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-persistent-sti.json @@ -0,0 +1,643 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 A-MQ applications with persistent storage built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-amq-persistent-sti" +    }, +    "labels": { +        "template": "eap6-amq-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "ActiveMQ Release version, e.g. 6.2, etc.", +            "name": "AMQ_RELEASE", +            "value": "6.2" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/ConnectionFactory", +            "name": "MQ_JNDI", +            "value": "java:/ConnectionFactory" +        }, +        { +            "description": "Protocol to configure.  Only openwire is supported by EAP.  amqp, amqp+ssl, mqtt, stomp, stomp+ssl, and ssl are not supported by EAP", +            "name": "MQ_PROTOCOL", +            "value": "openwire" +        }, +        { +            "description": "Queue names", +            "name": "MQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "MQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Broker user name", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Broker user password", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin User", +            "name": "AMQ_ADMIN_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin Password", +            "name": "AMQ_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61616, +                        "targetPort": 61616 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp (openwire) port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +              "name": "${APPLICATION_NAME}-http-route", +              "labels": { +                  "application": "${APPLICATION_NAME}" +              }, +              "annotations": { +                  "description": "Route for application's http service." +              } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MQ_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-amq=MQ" +                                    }, +                                    { +                                        "name": "MQ_JNDI", +                                        "value": "${MQ_JNDI}" +                                    }, +                                    { +                                        "name": "MQ_USERNAME", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "MQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "MQ_PROTOCOL", +                                        "value": "tcp" +                                    }, +                                    { +                                        "name": "MQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "MQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-amq" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-amq-6:${AMQ_RELEASE}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "registry.access.redhat.com/jboss-amq-6/amq-openshift:${AMQ_RELEASE}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -L -u ${AMQ_ADMIN_USERNAME}:${AMQ_ADMIN_PASSWORD} 'http://localhost:8161/hawtio/jolokia/read/org.apache.activemq:type=Broker,brokerName=*,service=Health/CurrentStatus' | grep -q '\"CurrentStatus\" *: *\"Good\"'" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data/kahadb", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_PROTOCOLS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "AMQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_USERNAME", +                                        "value": "${AMQ_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_PASSWORD", +                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-amq-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-amq-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-sti.json new file mode 100644 index 000000000..e96eef6f7 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-amq-sti.json @@ -0,0 +1,606 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 A-MQ applications built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-amq-sti" +    }, +    "labels": { +        "template": "eap6-amq-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "ActiveMQ Release version, e.g. 6.2, etc.", +            "name": "AMQ_RELEASE", +            "value": "6.2" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/ConnectionFactory", +            "name": "MQ_JNDI", +            "value": "java:/ConnectionFactory" +        }, +        { +            "description": "Protocol to configure.  Only openwire is supported by EAP.  amqp, amqp+ssl, mqtt, stomp, stomp+ssl, and ssl are not supported by EAP", +            "name": "MQ_PROTOCOL", +            "value": "openwire" +        }, +        { +            "description": "Queue names", +            "name": "MQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "MQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Broker user name", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Broker user password", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin User", +            "name": "AMQ_ADMIN_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "ActiveMQ Admin Password", +            "name": "AMQ_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 61616, +                        "targetPort": 61616 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-amq-tcp", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The broker's tcp (openwire) port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +              "name": "${APPLICATION_NAME}-http-route", +              "labels": { +                  "application": "${APPLICATION_NAME}" +              }, +              "annotations": { +                  "description": "Route for application's http service." +              } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MQ_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-amq=MQ" +                                    }, +                                    { +                                        "name": "MQ_JNDI", +                                        "value": "${MQ_JNDI}" +                                    }, +                                    { +                                        "name": "MQ_USERNAME", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "MQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "MQ_PROTOCOL", +                                        "value": "tcp" +                                    }, +                                    { +                                        "name": "MQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "MQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-amq", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-amq" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-amq-6:${AMQ_RELEASE}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "registry.access.redhat.com/jboss-amq-6/amq-openshift:${AMQ_RELEASE}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -L -u ${AMQ_ADMIN_USERNAME}:${AMQ_ADMIN_PASSWORD} 'http://localhost:8161/hawtio/jolokia/read/org.apache.activemq:type=Broker,brokerName=*,service=Health/CurrentStatus' | grep -q '\"CurrentStatus\" *: *\"Good\"'" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-amq-tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_PROTOCOLS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_QUEUES", +                                        "value": "${MQ_QUEUES}" +                                    }, +                                    { +                                        "name": "AMQ_TOPICS", +                                        "value": "${MQ_TOPICS}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_USERNAME", +                                        "value": "${AMQ_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_ADMIN_PASSWORD", +                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-basic-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-basic-sti.json new file mode 100644 index 000000000..7148d8fd7 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-basic-sti.json @@ -0,0 +1,405 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-jboss", +            "description": "Application template for EAP 6 applications built using STI." +        }, +        "name": "eap6-basic-sti" +    }, +    "labels": { +        "template": "eap6-basic-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-persistent-sti.json new file mode 100644 index 000000000..03cfbb11e --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-persistent-sti.json @@ -0,0 +1,619 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 MongDB applications with persistent storage built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-mongodb-persistent-sti" +    }, +    "labels": { +        "template": "eap6-mongodb-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/mongodb/data", +                                         "name": "${APPLICATION_NAME}-mongodb-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mongodb-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-sti.json new file mode 100644 index 000000000..39f5a5a62 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mongodb-sti.json @@ -0,0 +1,582 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 MongDB applications built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-mongodb-sti" +    }, +    "labels": { +        "template": "eap6-mongodb-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-persistent-sti.json new file mode 100644 index 000000000..0fa4421c6 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-persistent-sti.json @@ -0,0 +1,625 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 MySQL applications with persistent storage built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-mysql-persistent-sti" +    }, +    "labels": { +        "template": "eap6-mysql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mysql", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "TX_DATABASE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/var/lib/mysql/data", +                                        "name": "${APPLICATION_NAME}-mysql-pvol" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mysql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-sti.json new file mode 100644 index 000000000..981e16cef --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-mysql-sti.json @@ -0,0 +1,588 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 MySQL applications built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-mysql-sti" +    }, +    "labels": { +        "template": "eap6-mysql-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mysql", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "TX_DATABASE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-persistent-sti.json new file mode 100644 index 000000000..409ba5165 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-persistent-sti.json @@ -0,0 +1,601 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 PostgreSQL applications with persistent storage built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-postgresql-persistent-sti" +    }, +    "labels": { +        "template": "eap6-postgresql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/postgresql", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "TX_DATABASE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/pgsql/data", +                                         "name": "${APPLICATION_NAME}-postgresql-pvol" +                                     } +                                ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-postgresql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-sti.json new file mode 100644 index 000000000..c2ca18f9d --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/eap6-postgresql-sti.json @@ -0,0 +1,564 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for EAP 6 PostgreSQL applications built using STI.", +            "iconClass" : "icon-jboss" +        }, +        "name": "eap6-postgresql-sti" +    }, +    "labels": { +        "template": "eap6-postgresql-sti" +    }, +    "parameters": [ +        { +            "description": "EAP Release version, e.g. 6.4, etc.", +            "name": "EAP_RELEASE", +            "value": "6.4" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "eap-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "eap-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/postgresql", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "" +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "EAP_HTTPS_SECRET", +            "value": "eap-app-secret" +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "EAP_HTTPS_KEYSTORE", +            "value": "keystore.jks" +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "EAP_HTTPS_NAME", +            "value": "" +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "EAP_HTTPS_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8888, +                        "targetPort": 8888 +                    } +                ], +                "portalIP": "None", +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-ping", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Ping service for clustered applications." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-eap6-openshift:${EAP_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "eap-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "eap-keystore-volume", +                                        "mountPath": "/etc/eap-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-ping-8888", +                                        "containerPort": 8888, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "TX_DATABASE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-ping" +                                    }, +                                    { +                                        "name": "OPENSHIFT_DNS_PING_SERVICE_PORT", +                                        "value": "8888" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/eap-secret-volume" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_KEYSTORE", +                                        "value": "${EAP_HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_NAME", +                                        "value": "${EAP_HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "EAP_HTTPS_PASSWORD", +                                        "value": "${EAP_HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "eap-keystore-volume", +                                "secret": { +                                    "secretName": "${EAP_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-app-secret.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-app-secret.json new file mode 100644 index 000000000..c24e4ed8b --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-app-secret.json @@ -0,0 +1,33 @@ +{ +    "kind": "List", +    "apiVersion": "v1", +    "metadata": {}, +    "items": [ +        { +            "kind": "ServiceAccount", +            "apiVersion": "v1", +            "metadata": { +                "name": "jws-service-account" +            }, +            "secrets": [ +                { +                    "name": "jws-app-secret" +                } +            ] +        }, +        { +            "kind": "Secret", +            "apiVersion": "v1", +            "metadata": { +                "annotations": { +                    "description": "Default secret files with password 'mycertpass'" +                }, +                "name": "jws-app-secret" +            }, +            "data": { +                "server.crt": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURhakNDQWxLZ0F3SUJBZ0lKQUlVcmJBS2pjd3lkTUEwR0NTcUdTSWIzRFFFQkJRVUFNQ3d4Q3pBSkJnTlYKQkFZVEFrTkJNUXN3Q1FZRFZRUUlFd0pDUXpFUU1BNEdBMVVFQ2hNSFVtVmtJRWhoZERBZUZ3MHhOVEExTWpNdwpNalE0TWpCYUZ3MHhPREExTWpJd01qUTRNakJhTUN3eEN6QUpCZ05WQkFZVEFrTkJNUXN3Q1FZRFZRUUlFd0pDClF6RVFNQTRHQTFVRUNoTUhVbVZrSUVoaGREQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0MKZ2dFQkFMejlGcWYwbFV0eHBXbFlqQVF3MGNPVU5NMmF0SjFjWmMybEx5UEh3NVVYMkNna29jaHhuY0ZhSDZsYwpSeWVvUC9KQXVlM2d2cjJ0ZURicTRGMitRRWRFL3hrM0xLZEVhVXhwaGgvaVpDYUg0VnlXdzE3Y01aaS83UFUxCkhTak1waEVoK3MwQ1JIZnBCSVZDZ2hFQjZCekhYazNLSHU1K0JsRTYzRDVOSXJuNVBiRGhwUG5VaG1vY05HNU0KdFlEZE9mRHphTVdzcWU2ZGFkL0c3eXpDeVZYMnA2RllIbEdvQWpDTkVPdkFtTEFtMVcwNDdOOGV0QjIybFA3NQozK2dYby83T2Q1WHJJU0xLWTBNZ0puaDdmVEh1VVdhWEIxSEZ0YmFReXVreGVYZG1wRFR4VkdzenhHVXIxemd4ClU4VVFnMjFGOFhONjVydGNScVdCNWNFQXcrRUNBd0VBQWFPQmpqQ0JpekFkQmdOVkhRNEVGZ1FVVXJZUm5NOXIKemNGUS9QMFk4VlhzUm1OWVlUUXdYQVlEVlIwakJGVXdVNEFVVXJZUm5NOXJ6Y0ZRL1AwWThWWHNSbU5ZWVRTaApNS1F1TUN3eEN6QUpCZ05WQkFZVEFrTkJNUXN3Q1FZRFZRUUlFd0pDUXpFUU1BNEdBMVVFQ2hNSFVtVmtJRWhoCmRJSUpBSVVyYkFLamN3eWRNQXdHQTFVZEV3UUZNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFEeGcKckh1NFpoeXU4UjlZWGpLZVBXaXUxQnZYUVhJRG5DQVZiZXlMNHZ5WHczdFZTeng1S3BuaHprTm5zemxpS1RQRAozOWNNbTJ0VTBUcGpHRVZ1TDVTR0R5V3JRakNQWDY2NjZpdjhzNkpVYUxmdnBPNlduN0wzVXVMVnFoMmpVM2FOCkU2TDB4UEg4SWRzc3lGZ3Rac3BueVlxZ0cvYUoxUEtmZDYweXRtK0hveUYyZW5xZnVKaHNKNnp3QUVZdi9vUCsKcXhYK04yZDJEVmt2RjVRZ3llSjZiYWd1M0QxbWRpbE5pWDliZmVHZ3ptT1JXaHBYNkVqdnFqeTZ4TllqQ2IxbAo1anVzdHhHZlFGSm1UOTdaZnZQK1kxeTJvUkZFc01BVy9BNWNrai92SnlUUlZIeWZZSG1qeW82SFhSdzRWdERNCjJtOWZqOFhYTDh5TlZha2h6dE09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", +                "server.key": "LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpQcm9jLVR5cGU6IDQsRU5DUllQVEVECkRFSy1JbmZvOiBERVMtRURFMy1DQkMsODRGOEVFQjcyN0FCNzc4RgoKS2lkL0tKZ2JyWE1YUGwwQXc4azI0dW1QcW53NUhQZHk3ZUZ2aG1NNEU3T1V2bkZYeWpMN2dQZ0JjTmxTbEx2Rgp6eXZYVWZwUXROQ2dUWWJvU0dWVFpkV01OL0ttcTNheUJTckNvWGg3MUFMWm1KVDF4aDNCcWUyMzVNRzZlR2NTCngrY3hudW0yMXNWRFBHUnBmZUx4VXA3WU5mOTNwYzBNaTUzSVdmT0IvM2FscDJlajI0RkRTVG1xM0NpVFR1b3cKcUc2MjdjREY2RVNhNFphZmFXelpOVDJnUStrejRGQkcwc1dJYWVod012SXJiQWFldGpUSUhQTmZraUtOcTF3Qwpma2h0NU9xRDU0RzVnR1ZYd0tXcGF4S2M0K24rcEtsZk1od2NPQ3Z5Y2hwQmtQbzk0T2E2bE1oVUk3Y0FkemVOCmI0TmNVWS9UekxpNjgyRjlFZUpsOXJuQ0N2N0RJcEZJbkg5bG4zUElVT2pCYVlySFpqY0pSK2xWOFhWRVJzcTAKZ0hyTUZ2WjRXYXZPclhVaFhxTm10UmNSOVpoS3pvVnB5MStIRUlONTZIL2huaFB5ZEJLb3pnbXFwSFJoWVZwNApNWEk0ZGtlMVZ5VmlRQUMxUzU3Wi81anFTZTN5akRyYTZJMThJRzNPSGNxeEpuWXNNOS9NdVBRZjlJNlJWTEx3CnVXcDNDdkIvNUJyWlNQWVFGbnhCT09hLzd3SWVtNjE2Z2ZnREdCRjZpc3BVNTlhbjlKQWtHYmhKT2h4RzYvRjYKZFpNZUZOa0lkRUwzR3pQRWNjNWpVTGJmSE5tWmVsODlYRUVpak96LzhvVEdHYUNyRkUxVVZKLytZSVVzK3lnOQpwRFJ6bkxyV2hwNGxNTnVLYjRNeXkySlkrWW9DOHhMVUtaYnNYcUxlN2k5QTJwYWtFUmdhazZaK1BEZUR2OWpYCnU0M3dzU0dwRTRUeDFkR2JsRzJDd0pPSW53WnpETUEwTDliWm8xemY4bUZGN0FmejlCbjNMOWMybTVJUDlZQ1AKQ1dVcFA4S3AzbEhzQkpQWWl4VTJ3TlZWSGs1Vjlla2R3aEl3Mlc3d0gyOTB6azZFTXJvZ2NoMjdKTFk0MlBzOApyRDl6Wm5vbEgrN1pPa3lLQ1UxVWJHWUJFSUtvZVFGa1FCek01aEpFT0xGVXd0YmdvZE5YYS9oMStXMjdkaHd1CnIyMG1tb3lCRGpNNWdGVVh6dGpqNDZMakZuNE5iRmtwbkNNT1VDNVM2bkIyeTlONnoxUWRSekVPRy80cU5xVFkKRzY3c2szemlqVzFISkxJVGorMVNPZHdIWktSUFl3cGxNTkY4TFRKVlBOYVQ5L3FDVGV3bXl4WUpIVjljVWhuSwpMQUZZYXNKVG9HZytEQnNJL21GbDY3WHNhWnp1cUdSSksydnVvNG9jWjJNb250L3BSSXRwQStaUFNpREFqTzNjCm9kTW5LRmhkRkpMSTZZTXVja1RySGQycXREQmdPaEEyZjk3ajArckVGeWVNOHY2eGhGN0I4cEtscW5TQU01M2kKbGl1ZHh1NzA2RWNQQ3JlU3pPRjF5bWMrQnBmVjVtSnU0U1hEcUF4aEYzZFFPbEg5TDdPVmJtRDU4dUs0eDNldwpXQ05Qa2FGc1UxRThJR2M4UGVqc1kwdHUxdWtoK3ZMYnlNQlBVRXRxaEgrNFhNeUVJL0xjUVhIRlkybjBEcmZDCmxTclM3T3FKcGhPbW1VSWFwNGZLK0QzcldzZmFpSm9wc2Yxc044MEdLeVptSFY1TWtEY0k3NXdTWWp1RXhvcGgKVW0wcmJxMDdVVVVFR0tYL1JIQWhWS21nek5JMEZpYUZtbkhHOUw0bWZwclFHd2J5dTR1RktLUGtjOGxodlVwRAp6Z29SMTZQSUM4THpvcE5qTmJPem0xV0RUd1FxaUt5NWRsVWlWZlFRRlNmd09vcDMzakhvQXUzVWxYU3Bwby9vCnJnbGIxUUtBdm5zUEVFaG9HZUZpenFIWXhLVjZpT1hET3ZCcFhOcC8yMVB0OHpRbWVXUXZRZmhyOEc0cEpkVVcKRTFBWlc1b2JWWG1seWc4OWRML0pMTG02VFVNdUZaZFgxRlRNaVphangvQklqekhFVjdRNkhJZWFHYjBRb2dFZwotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo=" +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-basic-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-basic-sti.json new file mode 100644 index 000000000..bb5bbb134 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-basic-sti.json @@ -0,0 +1,359 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS applications built using STI." +        }, +        "name": "jws-tomcat7-basic-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-basic-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-persistent-sti.json new file mode 100644 index 000000000..86d4d3d25 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-persistent-sti.json @@ -0,0 +1,573 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MongoDB applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat7-mongodb-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-mongodb-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/mongodb/data", +                                         "name": "${APPLICATION_NAME}-mongodb-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mongodb-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-sti.json new file mode 100644 index 000000000..696587cf3 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mongodb-sti.json @@ -0,0 +1,536 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MongoDB applications built using STI." +        }, +        "name": "jws-tomcat7-mongodb-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-mongodb-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-persistent-sti.json new file mode 100644 index 000000000..3ff5a712e --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-persistent-sti.json @@ -0,0 +1,574 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MySQL applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat7-mysql-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-mysql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/mysql/data", +                                         "name": "${APPLICATION_NAME}-mysql-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mysql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-sti.json new file mode 100644 index 000000000..872e13f95 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-mysql-sti.json @@ -0,0 +1,537 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MySQL applications built using STI." +        }, +        "name": "jws-tomcat7-mysql-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-mysql-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-persistent-sti.json new file mode 100644 index 000000000..b22cce6fd --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-persistent-sti.json @@ -0,0 +1,550 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS PostgreSQL applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat7-postgresql-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-postgresql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/pgsql/data", +                                         "name": "${APPLICATION_NAME}-postgresql-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-postgresql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-sti.json new file mode 100644 index 000000000..43be3c3fe --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat7-postgresql-sti.json @@ -0,0 +1,513 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS PostgreSQL applications built using STI." +        }, +        "name": "jws-tomcat7-postgresql-sti" +    }, +    "labels": { +        "template": "jws-tomcat7-postgresql-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat7-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-basic-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-basic-sti.json new file mode 100644 index 000000000..1d45b4214 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-basic-sti.json @@ -0,0 +1,359 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS applications built using STI." +        }, +        "name": "jws-tomcat8-basic-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-basic-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-persistent-sti.json new file mode 100644 index 000000000..693cfaa0f --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-persistent-sti.json @@ -0,0 +1,573 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MongoDB applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat8-mongodb-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-mongodb-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/mongodb/data", +                                         "name": "${APPLICATION_NAME}-mongodb-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mongodb-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-sti.json new file mode 100644 index 000000000..8d27e8d94 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mongodb-sti.json @@ -0,0 +1,536 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MongoDB applications built using STI." +        }, +        "name": "jws-tomcat8-mongodb-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-mongodb-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Disable data file preallocation.", +            "name": "MONGODB_NOPREALLOC" +        }, +        { +            "description": "Set MongoDB to use a smaller default data file size.", +            "name": "MONGODB_SMALLFILES" +        }, +        { +            "description": "Runs MongoDB in a quiet mode that attempts to limit the amount of output.", +            "name": "MONGODB_QUIET" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Database admin password", +            "name": "DB_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 27017, +                        "targetPort": 27017 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mongodb=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "DB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mongodb", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mongodb" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mongodb-24:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mongodb" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mongodb", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mongodb", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mongodb", +                                "image": "registry.access.redhat.com/openshift3_beta/mongodb-24-rhel7:latest", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mongodb-tcp-27017", +                                        "containerPort": 27017, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MONGODB_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MONGODB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MONGODB_ADMIN_PASSWORD", +                                        "value": "${DB_ADMIN_PASSWORD}" +                                    }, +                                    { +                                        "name": "MONGODB_NOPREALLOC", +                                        "value": "${MONGODB_NOPREALLOC}" +                                    }, +                                    { +                                        "name": "MONGODB_SMALLFILES", +                                        "value": "${MONGODB_SMALLFILES}" +                                    }, +                                    { +                                        "name": "MONGODB_QUIET", +                                        "value": "${MONGODB_QUIET}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-persistent-sti.json new file mode 100644 index 000000000..1abf4e8cd --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-persistent-sti.json @@ -0,0 +1,574 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MySQL applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat8-mysql-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-mysql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/mysql/data", +                                         "name": "${APPLICATION_NAME}-mysql-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-mysql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-sti.json new file mode 100644 index 000000000..1944d3557 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-mysql-sti.json @@ -0,0 +1,537 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS MySQL applications built using STI." +        }, +        "name": "jws-tomcat8-mysql-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-mysql-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES" +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS" +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN" +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN" +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 3306, +                        "targetPort": 3306 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-mysql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-mysql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-mysql-55:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "registry.access.redhat.com/openshift3_beta/mysql-55-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-mysql-tcp-3306", +                                        "containerPort": 3306, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "MYSQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "MYSQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "MYSQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +                                        "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}" +                                    }, +                                    { +                                        "name": "MYSQL_MAX_CONNECTIONS", +                                        "value": "${MYSQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MIN_WORD_LEN", +                                        "value": "${MYSQL_FT_MIN_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_FT_MAX_WORD_LEN", +                                        "value": "${MYSQL_FT_MAX_WORD_LEN}" +                                    }, +                                    { +                                        "name": "MYSQL_AIO", +                                        "value": "${MYSQL_AIO}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-persistent-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-persistent-sti.json new file mode 100644 index 000000000..619895655 --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-persistent-sti.json @@ -0,0 +1,550 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS PostgreSQL applications with persistent storage built using STI." +        }, +        "name": "jws-tomcat8-postgresql-persistent-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-postgresql-persistent-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "volumeMounts": [ +                                     { +                                         "mountPath": "/var/lib/pgsql/data", +                                         "name": "${APPLICATION_NAME}-postgresql-pvol" +                                     } +                                 ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql-pvol", +                                "persistentVolumeClaim": { +                                    "claimName": "${APPLICATION_NAME}-postgresql-claim" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "apiVersion": "v1", +            "kind": "PersistentVolumeClaim", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql-claim", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "accessModes": [ "ReadWriteOnce" ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-sti.json b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-sti.json new file mode 100644 index 000000000..0e269d53f --- /dev/null +++ b/roles/openshift_examples/files/examples/xpaas-templates/jws-tomcat8-postgresql-sti.json @@ -0,0 +1,513 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "iconClass" : "icon-tomcat", +            "description": "Application template for JWS PostgreSQL applications built using STI." +        }, +        "name": "jws-tomcat8-postgresql-sti" +    }, +    "labels": { +        "template": "jws-tomcat8-postgresql-sti" +    }, +    "parameters": [ +        { +            "description": "JWS Release version, e.g. 3.0, 2.1, etc.", +            "name": "JWS_RELEASE", +            "value": "3.0" +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "jws-app" +        }, +        { +            "description": "Hostname for service routes", +            "name": "APPLICATION_HOSTNAME", +            "value": "jws-app.local" +        }, +        { +            "description": "Git source URI for application", +            "name": "GIT_URI" +        }, +        { +            "description": "Git branch/tag reference", +            "name": "GIT_REF", +            "value": "master" +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "GIT_CONTEXT_DIR", +            "value": "" +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/mongodb", +            "name": "DB_JNDI", +            "value": "" +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root" +        }, +        { +            "description": "The name of the secret containing the certificate files", +            "name": "JWS_HTTPS_SECRET", +            "value": "jws-app-secret" +        }, +        { +            "description": "The name of the certificate file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE", +            "value": "server.crt" +        }, +        { +            "description": "The name of the certificate key file within the secret", +            "name": "JWS_HTTPS_CERTIFICATE_KEY", +            "value": "server.key" +        }, +        { +            "description": "The certificate password", +            "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +            "value": "" +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS" +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS" +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression" +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin User", +            "name": "JWS_ADMIN_USERNAME", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "JWS Admin Password", +            "name": "JWS_ADMIN_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Github trigger secret", +            "name": "GITHUB_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_TRIGGER_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression" +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-http-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8443, +                        "targetPort": 8443 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-https-service", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 5432, +                        "targetPort": 5432 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The database server's port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-http-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-http-service" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https-route", +            "metadata": { +                "name": "${APPLICATION_NAME}-https-route", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${APPLICATION_HOSTNAME}", +                "to": { +                    "name": "${APPLICATION_NAME}-https-service" +                }, +                "tls": { +                    "termination" : "passthrough" +                } +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "BuildConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "source": { +                    "type": "Git", +                    "git": { +                        "uri": "${GIT_URI}", +                        "ref": "${GIT_REF}" +                    }, +                    "contextDir":"${GIT_CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "from": { +                            "kind": "ImageStreamTag", +                            "name": "jboss-webserver3-tomcat8-openshift:${JWS_RELEASE}" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "name": "${APPLICATION_NAME}" +                    } +                }, +                "triggers": [ +                    { +                        "type": "github", +                        "github": { +                            "secret": "${GITHUB_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "generic", +                        "generic": { +                            "secret": "${GENERIC_TRIGGER_SECRET}" +                        } +                    }, +                    { +                        "type": "imageChange", +                        "imageChange": {} +                    } +                ] +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}" +                            ], +                            "from": { +                                "kind": "ImageStream", +                                "name": "${APPLICATION_NAME}" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccount": "jws-service-account", +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "curl -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'" +                                        ] +                                    } +                                }, +                                "volumeMounts": [ +                                    { +                                        "name": "jws-certificate-volume", +                                        "mountPath": "/etc/jws-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8080", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "${APPLICATION_NAME}-tcp-8443", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB" +                                    }, +                                    { +                                        "name": "DB_JNDI", +                                        "value": "${DB_JNDI}" +                                    }, +                                    { +                                        "name": "DB_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "DB_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "DB_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_DIR", +                                        "value": "/etc/jws-secret-volume" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE", +                                        "value": "${JWS_HTTPS_CERTIFICATE}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_KEY", +                                        "value": "${JWS_HTTPS_CERTIFICATE_KEY}" +                                    }, +                                    { +                                        "name": "JWS_HTTPS_CERTIFICATE_PASSWORD", +                                        "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_USERNAME", +                                        "value": "${JWS_ADMIN_USERNAME}" +                                    }, +                                    { +                                        "name": "JWS_ADMIN_PASSWORD", +                                        "value": "${JWS_ADMIN_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "jws-certificate-volume", +                                "secret": { +                                    "secretName": "${JWS_HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        }, +        { +            "kind": "DeploymentConfig", +            "apiVersion": "v1", +            "metadata": { +                "name": "${APPLICATION_NAME}-postgresql", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                } +            }, +            "spec": { +                "strategy": { +                    "type": "Recreate" +                }, +                "triggers": [ +                    { +                        "type": "ImageChange", +                        "imageChangeParams": { +                            "automatic": true, +                            "containerNames": [ +                                "${APPLICATION_NAME}-postgresql" +                            ], +                            "from": { +                                "kind": "ImageStreamTag", +                                "name": "jboss-postgresql-92:latest" +                            } +                        } +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "registry.access.redhat.com/openshift3_beta/postgresql-92-rhel7:latest", +                                "ports": [ +                                    { +                                        "name": "${APPLICATION_NAME}-postgresql-tcp-5432", +                                        "containerPort": 5432, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "POSTGRESQL_USER", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_MAX_CONNECTIONS", +                                        "value": "${POSTGRESQL_MAX_CONNECTIONS}" +                                    }, +                                    { +                                        "name": "POSTGRESQL_SHARED_BUFFERS", +                                        "value": "${POSTGRESQL_SHARED_BUFFERS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/meta/main.yml b/roles/openshift_examples/meta/main.yml new file mode 100644 index 000000000..5cfda1c89 --- /dev/null +++ b/roles/openshift_examples/meta/main.yml @@ -0,0 +1,15 @@ +--- +galaxy_info: +  author: Scott Dodson +  description: OpenShift Examples +  company: Red Hat, Inc. +  license: Apache License, Version 2.0 +  min_ansible_version: 1.7 +  platforms: +  - name: EL +    versions: +    - 7 +  categories: +  - cloud +dependencies: +- role: openshift_common diff --git a/roles/openshift_examples/tasks/main.yml b/roles/openshift_examples/tasks/main.yml new file mode 100644 index 000000000..da8f603d7 --- /dev/null +++ b/roles/openshift_examples/tasks/main.yml @@ -0,0 +1,53 @@ +--- +- name: Copy openshift examples +  synchronize: src=examples dest=/usr/share/openshift + +# RHEL and Centos image streams are mutually exclusive +- name: Import RHEL streams +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ rhel_image_streams }} +  when: openshift_examples_load_rhel +  register: oex_import_rhel_streams +  failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0" +  changed_when: false + +- name: Import Centos Image streams +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ centos_image_streams }} +  when: openshift_examples_load_centos | bool +  register: oex_import_centos_streams +  failed_when: "'already exists' not in oex_import_centos_streams.stderr and oex_import_centos_streams.rc != 0" +  changed_when: false + +- name: Import db templates +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ db_templates_base }} +  when: openshift_examples_load_db_templates | bool +  register: oex_import_db_templates +  failed_when: "'already exists' not in oex_import_db_templates.stderr and oex_import_db_templates.rc != 0" +  changed_when: false + +- name: Import quickstart-templates +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ quickstarts_base }} +  when: openshift_examples_load_quickstarts +  register: oex_import_quickstarts +  failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0" +  changed_when: false + + +- name: Import xPaas image streams +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ xpaas_image_streams }} +  when: openshift_examples_load_xpaas | bool +  register: oex_import_xpaas_streams +  failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0" +  changed_when: false + +- name: Import xPaas templates +  command: > +    {{ openshift.common.client_binary }} create -n openshift -f {{ xpaas_templates_base }} +  when: openshift_examples_load_xpaas | bool +  register: oex_import_xpaas_templates +  failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0" +  changed_when: false diff --git a/roles/openshift_examples/templates.sh b/roles/openshift_examples/templates.sh new file mode 100755 index 000000000..4f3050494 --- /dev/null +++ b/roles/openshift_examples/templates.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +EXAMPLES_BASE=$(pwd)/files/examples +find files/examples -name '*.json' -delete +TEMP=`mktemp -d` +pushd $TEMP +wget https://github.com/openshift/origin/archive/master.zip -O origin-master.zip +wget https://github.com/openshift/django-ex/archive/master.zip -O django-ex-master.zip +wget https://github.com/openshift/rails-ex/archive/master.zip -O rails-ex-master.zip +wget https://github.com/openshift/nodejs-ex/archive/master.zip -O nodejs-ex-master.zip +wget https://github.com/openshift/dancer-ex/archive/master.zip -O dancer-ex-master.zip +wget https://github.com/openshift/cakephp-ex/archive/master.zip -O cakephp-ex-master.zip +wget https://github.com/jboss-openshift/application-templates/archive/master.zip -O application-templates-master.zip +unzip origin-master.zip +unzip django-ex-master.zip +unzip rails-ex-master.zip +unzip nodejs-ex-master.zip +unzip dancer-ex-master.zip +unzip cakephp-ex-master.zip +unzip application-templates-master.zip +cp origin-master/examples/db-templates/* ${EXAMPLES_BASE}/db-templates/ +cp origin-master/examples/image-streams/* ${EXAMPLES_BASE}/image-streams/ +cp django-ex-master/openshift/templates/* ${EXAMPLES_BASE}/quickstart-templates/ +cp rails-ex-master/openshift/templates/* ${EXAMPLES_BASE}/quickstart-templates/ +cp nodejs-ex-master/openshift/templates/* ${EXAMPLES_BASE}/quickstart-templates/ +cp dancer-ex-master/openshift/templates/* ${EXAMPLES_BASE}/quickstart-templates/ +cp cakephp-ex-master/openshift/templates/* ${EXAMPLES_BASE}/quickstart-templates/ +mv application-templates-master/jboss-image-streams.json ${EXAMPLES_BASE}/xpaas-streams/ +find application-templates-master/ -name '*.json' -exec mv {} ${EXAMPLES_BASE}/xpaas-templates/ \; +popd +git diff files/examples  | 
