diff options
66 files changed, 19027 insertions, 181 deletions
diff --git a/roles/openshift_examples/examples-sync.sh b/roles/openshift_examples/examples-sync.sh index 236717203..f598cf8f2 100755 --- a/roles/openshift_examples/examples-sync.sh +++ b/roles/openshift_examples/examples-sync.sh @@ -5,7 +5,7 @@  #  # This script should be run from openshift-ansible/roles/openshift_examples -XPAAS_VERSION=ose-v1.3.2 +XPAAS_VERSION=ose-v1.3.3  ORIGIN_VERSION=${1:-v1.3}  EXAMPLES_BASE=$(pwd)/files/examples/${ORIGIN_VERSION}  find ${EXAMPLES_BASE} -name '*.json' -delete diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-ephemeral-template.json new file mode 100644 index 000000000..64b004ff4 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-ephemeral-template.json @@ -0,0 +1,184 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "mariadb-ephemeral", +    "annotations": { +      "description": "MariaDB database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-mariadb", +      "tags": "database,mariadb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "ports": [ +          { +            "name": "mariadb", +            "port": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mariadb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mariadb:10.1", +                "namespace": "${NAMESPACE}" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mariadb", +                "image": " ", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "readinessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 5, +                  "exec": { +                    "command": [ "/bin/sh", "-i", "-c", +                      "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"] +                  } +                }, +                "livenessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 30, +                  "tcpSocket": { +                    "port": 3306 +                  } +                }, +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": { +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                }, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "imagePullPolicy": "IfNotPresent" +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi", +      "required": true +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Namespace", +      "description": "The OpenShift Namespace where the ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "displayName": "Database Service Name", +      "description": "The name of the OpenShift Service exposed for the database.", +      "value": "mariadb", +      "required": true +    }, +    { +      "name": "MYSQL_USER", +      "displayName": "MariaDB Connection Username", +      "description": "Username for MariaDB user that will be used for accessing the database.", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}", +      "required": true +    }, +    { +      "name": "MYSQL_PASSWORD", +      "displayName": "MariaDB Connection Password", +      "description": "Password for the MariaDB connection user.", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}", +      "required": true +    }, +    { +      "name": "MYSQL_DATABASE", +      "displayName": "MariaDB Database Name", +      "description": "Name of the MariaDB database accessed.", +      "value": "sampledb", +      "required": true +    } +  ], +  "labels": { +    "template": "mariadb-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-persistent-template.json new file mode 100644 index 000000000..0d5b39e81 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mariadb-persistent-template.json @@ -0,0 +1,208 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "mariadb-persistent", +    "annotations": { +      "description": "MariaDB database service, with persistent storage.  Scaling to more than one replica is not supported.  You must have persistent volumes available in your cluster to use this template.", +      "iconClass": "icon-mariadb", +      "tags": "database,mariadb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "ports": [ +          { +            "name": "mariadb", +            "port": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "PersistentVolumeClaim", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "accessModes": [ +          "ReadWriteOnce" +        ], +        "resources": { +          "requests": { +            "storage": "${VOLUME_CAPACITY}" +          } +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mariadb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mariadb:10.1", +                "namespace": "${NAMESPACE}" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mariadb", +                "image": " ", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "readinessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 5, +                  "exec": { +                    "command": [ "/bin/sh", "-i", "-c", +                      "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"] +                  } +                }, +                "livenessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 30, +                  "tcpSocket": { +                    "port": 3306 +                  } +                }, +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": { +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                }, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "imagePullPolicy": "IfNotPresent" +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "persistentVolumeClaim": { +                  "claimName": "${DATABASE_SERVICE_NAME}" +                } +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi", +      "required": true +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Namespace", +      "description": "The OpenShift Namespace where the ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "displayName": "Database Service Name", +      "description": "The name of the OpenShift Service exposed for the database.", +      "value": "mariadb", +      "required": true +    }, +    { +      "name": "MYSQL_USER", +      "displayName": "MariaDB Connection Username", +      "description": "Username for MariaDB user that will be used for accessing the database.", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}", +      "required": true +    }, +    { +      "name": "MYSQL_PASSWORD", +      "displayName": "MariaDB Connection Password", +      "description": "Password for the MariaDB connection user.", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}", +      "required": true +    }, +    { +      "name": "MYSQL_DATABASE", +      "displayName": "MariaDB Database Name", +      "description": "Name of the MariaDB database accessed.", +      "value": "sampledb", +      "required": true +    }, +    { +      "name": "VOLUME_CAPACITY", +      "displayName": "Volume Capacity", +      "description": "Volume space available for data, e.g. 512Mi, 2Gi.", +      "value": "1Gi", +      "required": true +    } +  ], +  "labels": { +    "template": "mariadb-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json index 9a935be5e..329e7a692 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-ephemeral-template.json @@ -60,7 +60,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mongodb:latest", +                "name": "mongodb:3.2",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -182,7 +182,7 @@      },      {        "name": "MONGODB_USER", -      "displayName": "MongoDB User", +      "displayName": "MongoDB Connection Username",        "description": "Username for MongoDB user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -190,8 +190,8 @@      },      {        "name": "MONGODB_PASSWORD", -      "displayName": "MongoDB Password", -      "description": "Password for the MongoDB user.", +      "displayName": "MongoDB Connection Password", +      "description": "Password for the MongoDB connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true @@ -214,5 +214,6 @@    ],    "labels": {      "template": "mongodb-ephemeral-template" -  } +  }, +  "message": "You can connect to the database using MongoDB connection URL mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}"  } diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json index 4f73d00cc..0fedad71e 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mongodb-persistent-template.json @@ -77,7 +77,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mongodb:latest", +                "name": "mongodb:3.2",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -199,7 +199,7 @@      },      {        "name": "MONGODB_USER", -      "displayName": "MongoDB User", +      "displayName": "MongoDB Connection Username",        "description": "Username for MongoDB user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -207,8 +207,8 @@      },      {        "name": "MONGODB_PASSWORD", -      "displayName": "MongoDB Password", -      "description": "Password for the MongoDB user.", +      "displayName": "MongoDB Connection Password", +      "description": "Password for the MongoDB connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true @@ -238,5 +238,6 @@    ],    "labels": {      "template": "mongodb-persistent-template" -  } +  }, +  "message": "You can connect to the database using MongoDB connection URL mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}"  } diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json index 5f133b946..8a4ec41b2 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-ephemeral-template.json @@ -3,7 +3,6 @@    "apiVersion": "v1",    "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", @@ -60,7 +59,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mysql:latest", +                "name": "mysql:5.6",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -122,10 +121,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${DATABASE_SERVICE_NAME}-data", @@ -179,7 +178,7 @@      },      {        "name": "MYSQL_USER", -      "displayName": "MySQL User", +      "displayName": "MySQL Connection Username",        "description": "Username for MySQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -187,8 +186,8 @@      },      {        "name": "MYSQL_PASSWORD", -      "displayName": "MySQL Password", -      "description": "Password for the MySQL user.", +      "displayName": "MySQL Connection Password", +      "description": "Password for the MySQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json index 88d8c3940..cae14c998 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/mysql-persistent-template.json @@ -65,7 +65,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mysql:latest", +                "name": "mysql:5.6",                  "namespace": "${NAMESPACE}"                }              } @@ -173,7 +173,7 @@      },      {        "name": "MYSQL_USER", -      "displayName": "MySQL User", +      "displayName": "MySQL Connection Username",        "description": "Username for MySQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -181,8 +181,8 @@      },      {        "name": "MYSQL_PASSWORD", -      "displayName": "MySQL Password", -      "description": "Password for the MySQL user.", +      "displayName": "MySQL Connection Password", +      "description": "Password for the MySQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json index e90244a6b..2b4b2a0cd 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-ephemeral-template.json @@ -60,7 +60,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "postgresql:latest", +                "name": "postgresql:9.5",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -121,10 +121,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${DATABASE_SERVICE_NAME}-data", @@ -178,7 +178,7 @@      },      {        "name": "POSTGRESQL_USER", -      "displayName": "PostgreSQL User", +      "displayName": "PostgreSQL Connection Username",        "description": "Username for PostgreSQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -186,8 +186,8 @@      },      {        "name": "POSTGRESQL_PASSWORD", -      "displayName": "PostgreSQL Password", -      "description": "Password for the PostgreSQL user.", +      "displayName": "PostgreSQL Connection Password", +      "description": "Password for the PostgreSQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json index 7b05076a5..63a04f08f 100644 --- a/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/db-templates/postgresql-persistent-template.json @@ -77,7 +77,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "postgresql:latest", +                "name": "postgresql:9.5",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -195,7 +195,7 @@      },      {        "name": "POSTGRESQL_USER", -      "displayName": "PostgreSQL User", +      "displayName": "PostgreSQL Connection Username",        "description": "Username for PostgreSQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -203,8 +203,8 @@      },      {        "name": "POSTGRESQL_PASSWORD", -      "displayName": "PostgreSQL Password", -      "description": "Password for the PostgreSQL user.", +      "displayName": "PostgreSQL Connection Password", +      "description": "Password for the PostgreSQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.2/image-streams/image-streams-centos7.json b/roles/openshift_examples/files/examples/v1.2/image-streams/image-streams-centos7.json index d971e5e7a..8aedf80fe 100644 --- a/roles/openshift_examples/files/examples/v1.2/image-streams/image-streams-centos7.json +++ b/roles/openshift_examples/files/examples/v1.2/image-streams/image-streams-centos7.json @@ -92,7 +92,7 @@              },              "from": {                "kind": "ImageStreamTag", -              "name": "0.10" +              "name": "4"              }            },            { @@ -109,6 +109,21 @@                "kind": "DockerImage",                "name": "openshift/nodejs-010-centos7:latest"              } +          }, +          { +            "name": "4", +            "annotations": { +              "description": "Build and run NodeJS 4 applications", +              "iconClass": "icon-nodejs", +              "tags": "builder,nodejs", +              "supports":"nodejs:4,nodejs", +              "version": "4", +              "sampleRepo": "https://github.com/openshift/nodejs-ex.git" +            }, +            "from": { +              "kind": "DockerImage", +              "name": "centos/nodejs-4-centos7:latest" +            }            }          ]        } diff --git a/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/logging-deployer.yaml b/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/logging-deployer.yaml index 77ffee7f9..8b28f872f 100644 --- a/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/logging-deployer.yaml +++ b/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/logging-deployer.yaml @@ -323,4 +323,3 @@ items:      description: "(Deprecated) Node selector operations Curator (label=value)."      name: CURATOR_OPS_NODESELECTOR      value: "" - diff --git a/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/metrics-deployer.yaml b/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/metrics-deployer.yaml index 89639fd67..ab62ae76f 100644 --- a/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/metrics-deployer.yaml +++ b/roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/metrics-deployer.yaml @@ -68,6 +68,8 @@ objects:            value: ${IGNORE_PREFLIGHT}          - name: USE_PERSISTENT_STORAGE            value: ${USE_PERSISTENT_STORAGE} +        - name: DYNAMICALLY_PROVISION_STORAGE +          value: ${DYNAMICALLY_PROVISION_STORAGE}          - name: HAWKULAR_METRICS_HOSTNAME            value: ${HAWKULAR_METRICS_HOSTNAME}          - name: CASSANDRA_NODES @@ -76,6 +78,8 @@ objects:            value: ${CASSANDRA_PV_SIZE}          - name: METRIC_DURATION            value: ${METRIC_DURATION} +        - name: USER_WRITE_ACCESS +          value: ${USER_WRITE_ACCESS}          - name: HEAPSTER_NODE_ID            value: ${HEAPSTER_NODE_ID}          - name: METRIC_RESOLUTION @@ -123,6 +127,10 @@ parameters:    name: USE_PERSISTENT_STORAGE    value: "true"  - +  description: "Set to true to dynamically provision storage, set to false to use use pre-created persistent volumes" +  name: DYNAMICALLY_PROVISION_STORAGE +  value: "false" +-    description: "The number of Cassandra Nodes to deploy for the initial cluster"    name: CASSANDRA_NODES    value: "1" @@ -135,6 +143,10 @@ parameters:    name: METRIC_DURATION    value: "7"  - +  description: "If a user accounts should be allowed to write metrics." +  name: USER_WRITE_ACCESS +  value: "false" +-    description: "The identifier used when generating metric ids in Hawkular"    name: HEAPSTER_NODE_ID    value: "nodename" diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/dancer-mysql.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/dancer-mysql.json index bc9c8e8fd..cc7920b7d 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/dancer-mysql.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/dancer-mysql.json @@ -207,9 +207,9 @@                    }                  ],                  "resources": { -		      "limits": { -			  "memory": "${MEMORY_LIMIT}" -		      } +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  }                  }                }              ] diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json index 0b7fd7cab..7d1dea11b 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django-postgresql.json @@ -83,7 +83,7 @@              "from": {                "kind": "ImageStreamTag",                "namespace": "${NAMESPACE}", -              "name": "python:3.4" +              "name": "python:3.5"              },              "env": [                { @@ -273,7 +273,7 @@                "from": {                  "kind": "ImageStreamTag",                  "namespace": "${NAMESPACE}", -                "name": "postgresql:9.4" +                "name": "postgresql:9.5"                }              }            }, diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django.json index 9e84e27e1..1c2e40d70 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/django.json @@ -83,7 +83,7 @@              "from": {                "kind": "ImageStreamTag",                "namespace": "${NAMESPACE}", -              "name": "python:3.4" +              "name": "python:3.5"              },              "env": [                { diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json index d1ae6de90..4f565206f 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-ephemeral-template.json @@ -10,6 +10,7 @@        "tags": "instant-app,jenkins"      }    }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.",    "objects": [      {        "kind": "Route", @@ -172,7 +173,8 @@        "displayName": "Jenkins Password",        "description": "Password for the Jenkins 'admin' user.",        "generate": "expression", -      "value": "password" +      "from": "[a-zA-Z0-9]{16}", +      "required": true      },      {        "name": "MEMORY_LIMIT", diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json index c7bc3f2fa..eda826a5b 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkins-persistent-template.json @@ -10,6 +10,7 @@        "tags": "instant-app,jenkins"      }    }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.",    "objects": [      {        "kind": "Route", @@ -189,7 +190,8 @@        "displayName": "Jenkins Password",        "description": "Password for the Jenkins 'admin' user.",        "generate": "expression", -      "value": "password" +      "from": "[a-zA-Z0-9]{16}", +      "required": true      },      {        "name": "MEMORY_LIMIT", diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkinstemplate.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkinstemplate.json new file mode 100644 index 000000000..fc409f709 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/jenkinstemplate.json @@ -0,0 +1,256 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "jenkins", +    "creationTimestamp": null, +    "annotations": { +      "description": "Jenkins service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-jenkins", +      "tags": "instant-app,jenkins" +    } +  }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.", +  "objects": [ +    { +      "kind": "Route", +      "apiVersion": "v1", +      "metadata": { +        "name": "jenkins", +        "creationTimestamp": null +      }, +      "spec": { +        "to": { +          "kind": "Service", +          "name": "${JENKINS_SERVICE_NAME}" +        }, +        "tls": { +          "termination": "edge", +          "insecureEdgeTerminationPolicy": "Redirect", +          "certificate": "-----BEGIN CERTIFICATE-----\nMIIDIjCCAgqgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBoTELMAkGA1UEBhMCVVMx\nCzAJBgNVBAgMAlNDMRUwEwYDVQQHDAxEZWZhdWx0IENpdHkxHDAaBgNVBAoME0Rl\nZmF1bHQgQ29tcGFueSBMdGQxEDAOBgNVBAsMB1Rlc3QgQ0ExGjAYBgNVBAMMEXd3\ndy5leGFtcGxlY2EuY29tMSIwIAYJKoZIhvcNAQkBFhNleGFtcGxlQGV4YW1wbGUu\nY29tMB4XDTE1MDExMjE0MTk0MVoXDTE2MDExMjE0MTk0MVowfDEYMBYGA1UEAwwP\nd3d3LmV4YW1wbGUuY29tMQswCQYDVQQIDAJTQzELMAkGA1UEBhMCVVMxIjAgBgkq\nhkiG9w0BCQEWE2V4YW1wbGVAZXhhbXBsZS5jb20xEDAOBgNVBAoMB0V4YW1wbGUx\nEDAOBgNVBAsMB0V4YW1wbGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMrv\ngu6ZTTefNN7jjiZbS/xvQjyXjYMN7oVXv76jbX8gjMOmg9m0xoVZZFAE4XyQDuCm\n47VRx5Qrf/YLXmB2VtCFvB0AhXr5zSeWzPwaAPrjA4ebG+LUo24ziS8KqNxrFs1M\nmNrQUgZyQC6XIe1JHXc9t+JlL5UZyZQC1IfaJulDAgMBAAGjDTALMAkGA1UdEwQC\nMAAwDQYJKoZIhvcNAQEFBQADggEBAFCi7ZlkMnESvzlZCvv82Pq6S46AAOTPXdFd\nTMvrh12E1sdVALF1P1oYFJzG1EiZ5ezOx88fEDTW+Lxb9anw5/KJzwtWcfsupf1m\nV7J0D3qKzw5C1wjzYHh9/Pz7B1D0KthQRATQCfNf8s6bbFLaw/dmiIUhHLtIH5Qc\nyfrejTZbOSP77z8NOWir+BWWgIDDB2//3AkDIQvT20vmkZRhkqSdT7et4NmXOX/j\njhPti4b2Fie0LeuvgaOdKjCpQQNrYthZHXeVlOLRhMTSk3qUczenkKTOhvP7IS9q\n+Dzv5hqgSfvMG392KWh5f8xXfJNs4W5KLbZyl901MeReiLrPH3w=\n-----END CERTIFICATE-----", +          "key": "-----BEGIN PRIVATE KEY-----\nMIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBAMrvgu6ZTTefNN7j\njiZbS/xvQjyXjYMN7oVXv76jbX8gjMOmg9m0xoVZZFAE4XyQDuCm47VRx5Qrf/YL\nXmB2VtCFvB0AhXr5zSeWzPwaAPrjA4ebG+LUo24ziS8KqNxrFs1MmNrQUgZyQC6X\nIe1JHXc9t+JlL5UZyZQC1IfaJulDAgMBAAECgYEAnxOjEj/vrLNLMZE1Q9H7PZVF\nWdP/JQVNvQ7tCpZ3ZdjxHwkvf//aQnuxS5yX2Rnf37BS/TZu+TIkK4373CfHomSx\nUTAn2FsLmOJljupgGcoeLx5K5nu7B7rY5L1NHvdpxZ4YjeISrRtEPvRakllENU5y\ngJE8c2eQOx08ZSRE4TkCQQD7dws2/FldqwdjJucYijsJVuUdoTqxP8gWL6bB251q\nelP2/a6W2elqOcWId28560jG9ZS3cuKvnmu/4LG88vZFAkEAzphrH3673oTsHN+d\nuBd5uyrlnGjWjuiMKv2TPITZcWBjB8nJDSvLneHF59MYwejNNEof2tRjgFSdImFH\nmi995wJBAMtPjW6wiqRz0i41VuT9ZgwACJBzOdvzQJfHgSD9qgFb1CU/J/hpSRIM\nkYvrXK9MbvQFvG6x4VuyT1W8mpe1LK0CQAo8VPpffhFdRpF7psXLK/XQ/0VLkG3O\nKburipLyBg/u9ZkaL0Ley5zL5dFBjTV2Qkx367Ic2b0u9AYTCcgi2DsCQQD3zZ7B\nv7BOm7MkylKokY2MduFFXU0Bxg6pfZ7q3rvg8gqhUFbaMStPRYg6myiDiW/JfLhF\nTcFT4touIo7oriFJ\n-----END PRIVATE KEY-----", +          "caCertificate": "-----BEGIN CERTIFICATE-----\nMIIEFzCCAv+gAwIBAgIJALK1iUpF2VQLMA0GCSqGSIb3DQEBBQUAMIGhMQswCQYD\nVQQGEwJVUzELMAkGA1UECAwCU0MxFTATBgNVBAcMDERlZmF1bHQgQ2l0eTEcMBoG\nA1UECgwTRGVmYXVsdCBDb21wYW55IEx0ZDEQMA4GA1UECwwHVGVzdCBDQTEaMBgG\nA1UEAwwRd3d3LmV4YW1wbGVjYS5jb20xIjAgBgkqhkiG9w0BCQEWE2V4YW1wbGVA\nZXhhbXBsZS5jb20wHhcNMTUwMTEyMTQxNTAxWhcNMjUwMTA5MTQxNTAxWjCBoTEL\nMAkGA1UEBhMCVVMxCzAJBgNVBAgMAlNDMRUwEwYDVQQHDAxEZWZhdWx0IENpdHkx\nHDAaBgNVBAoME0RlZmF1bHQgQ29tcGFueSBMdGQxEDAOBgNVBAsMB1Rlc3QgQ0Ex\nGjAYBgNVBAMMEXd3dy5leGFtcGxlY2EuY29tMSIwIAYJKoZIhvcNAQkBFhNleGFt\ncGxlQGV4YW1wbGUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nw2rK1J2NMtQj0KDug7g7HRKl5jbf0QMkMKyTU1fBtZ0cCzvsF4CqV11LK4BSVWaK\nrzkaXe99IVJnH8KdOlDl5Dh/+cJ3xdkClSyeUT4zgb6CCBqg78ePp+nN11JKuJlV\nIG1qdJpB1J5O/kCLsGcTf7RS74MtqMFo96446Zvt7YaBhWPz6gDaO/TUzfrNcGLA\nEfHVXkvVWqb3gqXUztZyVex/gtP9FXQ7gxTvJml7UkmT0VAFjtZnCqmFxpLZFZ15\n+qP9O7Q2MpsGUO/4vDAuYrKBeg1ZdPSi8gwqUP2qWsGd9MIWRv3thI2903BczDc7\nr8WaIbm37vYZAS9G56E4+wIDAQABo1AwTjAdBgNVHQ4EFgQUugLrSJshOBk5TSsU\nANs4+SmJUGwwHwYDVR0jBBgwFoAUugLrSJshOBk5TSsUANs4+SmJUGwwDAYDVR0T\nBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaMJ33zAMV4korHo5aPfayV3uHoYZ\n1ChzP3eSsF+FjoscpoNSKs91ZXZF6LquzoNezbfiihK4PYqgwVD2+O0/Ty7UjN4S\nqzFKVR4OS/6lCJ8YncxoFpTntbvjgojf1DEataKFUN196PAANc3yz8cWHF4uvjPv\nWkgFqbIjb+7D1YgglNyovXkRDlRZl0LD1OQ0ZWhd4Ge1qx8mmmanoBeYZ9+DgpFC\nj9tQAbS867yeOryNe7sEOIpXAAqK/DTu0hB6+ySsDfMo4piXCc2aA/eI2DCuw08e\nw17Dz9WnupZjVdwTKzDhFgJZMLDqn37HQnT6EemLFqbcR0VPEnfyhDtZIQ==\n-----END CERTIFICATE-----" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${JENKINS_SERVICE_NAME}", +        "creationTimestamp": null +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "jenkins" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "jenkins:1", +                "namespace": "openshift" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${JENKINS_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "creationTimestamp": null, +            "labels": { +              "name": "${JENKINS_SERVICE_NAME}" +            } +          }, +          "spec": { +            "serviceAccountName": "${JENKINS_SERVICE_NAME}", +            "containers": [ +              { +                "name": "jenkins", +                "image": " ", +                "readinessProbe": { +                  "timeoutSeconds": 3, +                  "initialDelaySeconds": 3, +                  "httpGet": { +                    "path": "/login", +                    "port": 8080 +                  } +                }, +                "livenessProbe": { +                    "timeoutSeconds": 3, +                    "initialDelaySeconds": 120, +                    "httpGet": { +                        "path": "/login", +                        "port": 8080 +                    } +                }, +                "env": [ +                  { +                    "name": "JENKINS_PASSWORD", +                    "value": "${JENKINS_PASSWORD}" +                  }, +                  { +                    "name": "KUBERNETES_MASTER", +                    "value": "https://kubernetes.default:443" +                  }, +                  { +                    "name": "KUBERNETES_TRUST_CERTIFICATES", +                    "value": "true" +                  } +                ], +                "resources": { +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                }, +                "volumeMounts": [ +                  { +                    "name": "${JENKINS_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/jenkins" +                  } +                ], +                "terminationMessagePath": "/dev/termination-log", +                "imagePullPolicy": "IfNotPresent", +                "capabilities": {}, +                "securityContext": { +                  "capabilities": {}, +                  "privileged": false +                } +              } +            ], +            "volumes": [ +              { +                "name": "${JENKINS_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ], +            "restartPolicy": "Always", +            "dnsPolicy": "ClusterFirst" +          } +        } +      } +    }, +    { +      "kind": "ServiceAccount", +        "apiVersion": "v1", +        "metadata": { +            "name": "${JENKINS_SERVICE_NAME}" +        } +    }, +    { +      "kind": "RoleBinding", +      "apiVersion": "v1", +      "metadata": { +          "name": "${JENKINS_SERVICE_NAME}_edit" +      }, +      "groupNames": null, +      "subjects": [ +          { +              "kind": "ServiceAccount", +              "name": "${JENKINS_SERVICE_NAME}" +          } +      ], +      "roleRef": { +          "name": "edit" +      } +    }, +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "jenkins-jnlp" +      }, +      "spec": { +        "ports": [ +          { +            "name": "agent", +            "protocol": "TCP", +            "port": 50000, +            "targetPort": 50000, +            "nodePort": 0 +          } +        ], +        "selector": { +          "name": "${JENKINS_SERVICE_NAME}" +        }, +        "portalIP": "", +        "type": "ClusterIP", +        "sessionAffinity": "None" +      } +    }, +    { +       "kind": "Service", +       "apiVersion": "v1", +       "metadata": { +         "name": "${JENKINS_SERVICE_NAME}", +         "annotations": { +           "service.alpha.openshift.io/dependencies": "[{\"name\": \"jenkins-jnlp\", \"namespace\": \"\", \"kind\": \"Service\"}]", +           "service.openshift.io/infrastructure": "true" +         }, +         "creationTimestamp": null +       }, +       "spec": { +         "ports": [ +           { +             "name": "web", +             "protocol": "TCP", +             "port": 80, +             "targetPort": 8080, +             "nodePort": 0 +           } +         ], +         "selector": { +           "name": "${JENKINS_SERVICE_NAME}" +         }, +         "portalIP": "", +         "type": "ClusterIP", +         "sessionAffinity": "None" +       } +    } +  ], +  "parameters": [ +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi" +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Namespace", +      "description": "The OpenShift Namespace where the ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "JENKINS_SERVICE_NAME", +      "displayName": "Jenkins Service Name", +      "description": "The name of the OpenShift Service exposed for the Jenkins container.", +      "value": "jenkins" +    }, +    { +      "name": "JENKINS_PASSWORD", +      "displayName": "Jenkins Password", +      "description": "Password for the Jenkins 'admin' user.", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}", +      "required": true +    } +  ], +  "labels": { +    "template": "jenkins-pipeline-template" +  } +} diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs-mongodb.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs-mongodb.json index b2b9f2478..6ab4a1781 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs-mongodb.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs-mongodb.json @@ -83,7 +83,7 @@              "from": {                "kind": "ImageStreamTag",                "namespace": "${NAMESPACE}", -              "name": "nodejs:0.10" +              "name": "nodejs:4"              },              "env":  [                { @@ -271,7 +271,7 @@                "from": {                  "kind": "ImageStreamTag",                  "namespace": "${NAMESPACE}", -                "name": "mongodb:2.6" +                "name": "mongodb:3.2"                }              }            }, @@ -322,7 +322,7 @@                    "timeoutSeconds": 1,                    "initialDelaySeconds": 3,                    "exec": { -                    "command": [ "/bin/sh", "-i", "-c", "mongostat --host 127.0.0.1 -u admin -p ${DATABASE_ADMIN_PASSWORD} -n 1 --noheaders"] +                    "command": [ "/bin/sh", "-i", "-c", "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""]                    }                  },                  "livenessProbe": { diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json index 08c7d3106..ec262e4e8 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/nodejs.json @@ -83,7 +83,7 @@              "from": {                "kind": "ImageStreamTag",                "namespace": "${NAMESPACE}", -              "name": "nodejs:0.10" +              "name": "nodejs:4"              },              "env":  [                { diff --git a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/rails-postgresql.json b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/rails-postgresql.json index e64e2feeb..50d60f2bb 100644 --- a/roles/openshift_examples/files/examples/v1.2/quickstart-templates/rails-postgresql.json +++ b/roles/openshift_examples/files/examples/v1.2/quickstart-templates/rails-postgresql.json @@ -83,7 +83,7 @@              "from": {                "kind": "ImageStreamTag",                "namespace": "${NAMESPACE}", -              "name": "ruby:2.2" +              "name": "ruby:2.3"              },              "env": [                { @@ -300,7 +300,7 @@                "from": {                  "kind": "ImageStreamTag",                  "namespace": "${NAMESPACE}", -                "name": "postgresql:9.4" +                "name": "postgresql:9.5"                }              }            }, diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-streams/jboss-image-streams.json b/roles/openshift_examples/files/examples/v1.2/xpaas-streams/jboss-image-streams.json index 8c21683dc..4edc97f41 100644 --- a/roles/openshift_examples/files/examples/v1.2/xpaas-streams/jboss-image-streams.json +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-streams/jboss-image-streams.json @@ -194,7 +194,7 @@                      {                          "name": "1.2",                          "annotations": { -                            "description": "Decision Server 6.2 S2I images.", +                            "description": "Red Hat JBoss BRMS 6.2 decision server S2I images.",                              "iconClass": "icon-jboss",                              "tags": "builder,decisionserver,java,xpaas",                              "supports":"decisionserver:6.2,java:8,xpaas:1.2", @@ -211,6 +211,56 @@              "kind": "ImageStream",              "apiVersion": "v1",              "metadata": { +                "name": "jboss-decisionserver63-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-decisionserver-6/decisionserver63-openshift", +                "tags": [ +                    { +                        "name": "1.3", +                        "annotations": { +                            "description": "Red Hat JBoss BRMS 6.3 decision server S2I images.", +                            "iconClass": "icon-jboss", +                            "tags": "builder,decisionserver,java,xpaas", +                            "supports":"decisionserver:6.3,java:8,xpaas:1.3", +                            "sampleRepo": "https://github.com/jboss-openshift/openshift-quickstarts.git", +                            "sampleContextDir": "decisionserver/hellorules", +                            "sampleRef": "1.3", +                            "version": "1.3" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-processserver63-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-processserver-6/processserver63-openshift", +                "tags": [ +                    { +                        "name": "1.3", +                        "annotations": { +                            "description": "Red Hat JBoss BPM Suite 6.3 intelligent process server S2I images.", +                            "iconClass": "icon-jboss", +                            "tags": "builder,processserver,java,xpaas", +                            "supports":"processserver:6.3,java:8,xpaas:1.3", +                            "sampleRepo": "https://github.com/jboss-openshift/openshift-quickstarts.git", +                            "sampleContextDir": "processserver/library", +                            "sampleRef": "1.3", +                            "version": "1.3" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": {                  "name": "jboss-datagrid65-openshift"              },              "spec": { diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-amq-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-amq-s2i.json index f09900491..754a3b4c0 100644 --- a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-amq-s2i.json +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-amq-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 A-MQ applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server A-MQ applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,amq,java,messaging,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-amq-s2i"      },      "labels": {          "template": "decisionserver62-amq-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -145,18 +145,16 @@              "required": false          },          { -            "description": "User name for broker admin. If left empty, it will be generated.", -            "name": "AMQ_ADMIN_USERNAME", -            "from": "user[a-zA-Z0-9]{3}", -            "generate": "expression", -            "required": true +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false          },          { -            "description": "Password for broker admin. If left empty, it will be generated.", -            "name": "AMQ_ADMIN_PASSWORD", -            "from": "[a-zA-Z0-9]{8}", -            "generate": "expression", -            "required": true +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false          },          {              "description": "GitHub trigger secret", @@ -460,11 +458,6 @@                                          "name": "https",                                          "containerPort": 8443,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ @@ -609,6 +602,11 @@                                  },                                  "ports": [                                      { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    {                                          "name": "amqp",                                          "containerPort": 5672,                                          "protocol": "TCP" @@ -658,20 +656,24 @@                                          "value": "${MQ_PROTOCOL}"                                      },                                      { -                                        "name": "AMQ_QUEUES", -                                        "value": "${MQ_QUEUES}" +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}"                                      },                                      { -                                        "name": "AMQ_TOPICS", -                                        "value": "${MQ_TOPICS}" +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp"                                      },                                      { -                                        "name": "AMQ_ADMIN_USERNAME", -                                        "value": "${AMQ_ADMIN_USERNAME}" +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        }                                      },                                      { -                                        "name": "AMQ_ADMIN_PASSWORD", -                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}"                                      }                                  ]                              } diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-basic-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-basic-s2i.json index 7f694e0e1..8be4ac90b 100644 --- a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-basic-s2i.json +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-basic-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,java,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-basic-s2i"      },      "labels": {          "template": "decisionserver62-basic-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -301,11 +301,6 @@                                          "name": "http",                                          "containerPort": 8080,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-https-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-https-s2i.json index ea1fcd5dc..bf9047599 100644 --- a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-https-s2i.json +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver62-https-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 HTTPS applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server HTTPS applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,java,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-https-s2i"      },      "labels": {          "template": "decisionserver62-https-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -403,11 +403,6 @@                                          "name": "https",                                          "containerPort": 8443,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-amq-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-amq-s2i.json new file mode 100644 index 000000000..51e667e02 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-amq-s2i.json @@ -0,0 +1,696 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server A-MQ applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,amq,java,messaging,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-amq-s2i" +    }, +    "labels": { +        "template": "decisionserver63-amq-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "decisionserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's HTTPS 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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's HTTP service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's HTTPS service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "decisionserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "decisionserver-keystore-volume", +                                        "mountPath": "/etc/decisionserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "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": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/decisionserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "decisionserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-basic-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-basic-s2i.json new file mode 100644 index 000000000..c5f0d006a --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-basic-s2i.json @@ -0,0 +1,339 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-basic-s2i" +    }, +    "labels": { +        "template": "decisionserver63-basic-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-https-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-https-s2i.json new file mode 100644 index 000000000..3db0e4c84 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/decisionserver63-https-s2i.json @@ -0,0 +1,473 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server HTTPS applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-https-s2i" +    }, +    "labels": { +        "template": "decisionserver63-https-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "decisionserver-app-secret", +            "required": true +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "decisionserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "decisionserver-keystore-volume", +                                        "mountPath": "/etc/decisionserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/decisionserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "decisionserver-keystore-volume", +                                "secret": { +                                    "secretName": "${HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json new file mode 100644 index 000000000..1dea463ac --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json @@ -0,0 +1,1079 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and MySQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-mysql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-mysql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Split the data directory for each node in a mesh.", +            "name": "AMQ_SPLIT", +            "value": "false", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB,${APPLICATION_NAME}-mysql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_SPLIT", +                                        "value": "${AMQ_SPLIT}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ], +                        "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": [ +                    "ReadWriteMany" +                ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-s2i.json new file mode 100644 index 000000000..42264585b --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-mysql-s2i.json @@ -0,0 +1,959 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and MySQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-mysql-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-mysql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json new file mode 100644 index 000000000..f6d0c99ed --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json @@ -0,0 +1,1052 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and PostgreSQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-postgresql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-postgresql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Split the data directory for each node in a mesh.", +            "name": "AMQ_SPLIT", +            "value": "false", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB,${APPLICATION_NAME}-postgresql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_SPLIT", +                                        "value": "${AMQ_SPLIT}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ], +                        "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": [ +                    "ReadWriteMany" +                ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-s2i.json new file mode 100644 index 000000000..41c726cf0 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-amq-postgresql-s2i.json @@ -0,0 +1,932 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and PostgreSQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-postgresql-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-postgresql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-basic-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-basic-s2i.json new file mode 100644 index 000000000..170c919cb --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-basic-s2i.json @@ -0,0 +1,345 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,javaee,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-basic-s2i" +    }, +    "labels": { +        "template": "processserver63-basic-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.H2Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-mysql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-mysql-persistent-s2i.json new file mode 100644 index 000000000..89d0db1a6 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-mysql-persistent-s2i.json @@ -0,0 +1,792 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server MySQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-mysql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-mysql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB,${APPLICATION_NAME}-mysql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.2/xpaas-templates/processserver63-mysql-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-mysql-s2i.json new file mode 100644 index 000000000..26cab29f8 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-mysql-s2i.json @@ -0,0 +1,716 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server MySQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-mysql-s2i" +    }, +    "labels": { +        "template": "processserver63-mysql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.2/xpaas-templates/processserver63-postgresql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-postgresql-persistent-s2i.json new file mode 100644 index 000000000..32a512829 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-postgresql-persistent-s2i.json @@ -0,0 +1,765 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server PostgreSQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-postgresql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-postgresql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB,${APPLICATION_NAME}-postgresql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.2/xpaas-templates/processserver63-postgresql-s2i.json b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-postgresql-s2i.json new file mode 100644 index 000000000..55e2199bb --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.2/xpaas-templates/processserver63-postgresql-s2i.json @@ -0,0 +1,689 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server PostgreSQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-postgresql-s2i" +    }, +    "labels": { +        "template": "processserver63-postgresql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.3/db-templates/mariadb-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mariadb-ephemeral-template.json new file mode 100644 index 000000000..64b004ff4 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mariadb-ephemeral-template.json @@ -0,0 +1,184 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "mariadb-ephemeral", +    "annotations": { +      "description": "MariaDB database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing", +      "iconClass": "icon-mariadb", +      "tags": "database,mariadb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "ports": [ +          { +            "name": "mariadb", +            "port": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mariadb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mariadb:10.1", +                "namespace": "${NAMESPACE}" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mariadb", +                "image": " ", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "readinessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 5, +                  "exec": { +                    "command": [ "/bin/sh", "-i", "-c", +                      "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"] +                  } +                }, +                "livenessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 30, +                  "tcpSocket": { +                    "port": 3306 +                  } +                }, +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": { +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                }, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "imagePullPolicy": "IfNotPresent" +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "emptyDir": { +                  "medium": "" +                } +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi", +      "required": true +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Namespace", +      "description": "The OpenShift Namespace where the ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "displayName": "Database Service Name", +      "description": "The name of the OpenShift Service exposed for the database.", +      "value": "mariadb", +      "required": true +    }, +    { +      "name": "MYSQL_USER", +      "displayName": "MariaDB Connection Username", +      "description": "Username for MariaDB user that will be used for accessing the database.", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}", +      "required": true +    }, +    { +      "name": "MYSQL_PASSWORD", +      "displayName": "MariaDB Connection Password", +      "description": "Password for the MariaDB connection user.", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}", +      "required": true +    }, +    { +      "name": "MYSQL_DATABASE", +      "displayName": "MariaDB Database Name", +      "description": "Name of the MariaDB database accessed.", +      "value": "sampledb", +      "required": true +    } +  ], +  "labels": { +    "template": "mariadb-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/mariadb-persistent-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mariadb-persistent-template.json new file mode 100644 index 000000000..0d5b39e81 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mariadb-persistent-template.json @@ -0,0 +1,208 @@ +{ +  "kind": "Template", +  "apiVersion": "v1", +  "metadata": { +    "name": "mariadb-persistent", +    "annotations": { +      "description": "MariaDB database service, with persistent storage.  Scaling to more than one replica is not supported.  You must have persistent volumes available in your cluster to use this template.", +      "iconClass": "icon-mariadb", +      "tags": "database,mariadb" +    } +  }, +  "objects": [ +    { +      "kind": "Service", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "ports": [ +          { +            "name": "mariadb", +            "port": 3306 +          } +        ], +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        } +      } +    }, +    { +      "kind": "PersistentVolumeClaim", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "accessModes": [ +          "ReadWriteOnce" +        ], +        "resources": { +          "requests": { +            "storage": "${VOLUME_CAPACITY}" +          } +        } +      } +    }, +    { +      "kind": "DeploymentConfig", +      "apiVersion": "v1", +      "metadata": { +        "name": "${DATABASE_SERVICE_NAME}" +      }, +      "spec": { +        "strategy": { +          "type": "Recreate" +        }, +        "triggers": [ +          { +            "type": "ImageChange", +            "imageChangeParams": { +              "automatic": true, +              "containerNames": [ +                "mariadb" +              ], +              "from": { +                "kind": "ImageStreamTag", +                "name": "mariadb:10.1", +                "namespace": "${NAMESPACE}" +              } +            } +          }, +          { +            "type": "ConfigChange" +          } +        ], +        "replicas": 1, +        "selector": { +          "name": "${DATABASE_SERVICE_NAME}" +        }, +        "template": { +          "metadata": { +            "labels": { +              "name": "${DATABASE_SERVICE_NAME}" +            } +          }, +          "spec": { +            "containers": [ +              { +                "name": "mariadb", +                "image": " ", +                "ports": [ +                  { +                    "containerPort": 3306 +                  } +                ], +                "readinessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 5, +                  "exec": { +                    "command": [ "/bin/sh", "-i", "-c", +                      "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"] +                  } +                }, +                "livenessProbe": { +                  "timeoutSeconds": 1, +                  "initialDelaySeconds": 30, +                  "tcpSocket": { +                    "port": 3306 +                  } +                }, +                "env": [ +                  { +                    "name": "MYSQL_USER", +                    "value": "${MYSQL_USER}" +                  }, +                  { +                    "name": "MYSQL_PASSWORD", +                    "value": "${MYSQL_PASSWORD}" +                  }, +                  { +                    "name": "MYSQL_DATABASE", +                    "value": "${MYSQL_DATABASE}" +                  } +                ], +                "resources": { +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                }, +                "volumeMounts": [ +                  { +                    "name": "${DATABASE_SERVICE_NAME}-data", +                    "mountPath": "/var/lib/mysql/data" +                  } +                ], +                "imagePullPolicy": "IfNotPresent" +              } +            ], +            "volumes": [ +              { +                "name": "${DATABASE_SERVICE_NAME}-data", +                "persistentVolumeClaim": { +                  "claimName": "${DATABASE_SERVICE_NAME}" +                } +              } +            ] +          } +        } +      } +    } +  ], +  "parameters": [ +    { +      "name": "MEMORY_LIMIT", +      "displayName": "Memory Limit", +      "description": "Maximum amount of memory the container can use.", +      "value": "512Mi", +      "required": true +    }, +    { +      "name": "NAMESPACE", +      "displayName": "Namespace", +      "description": "The OpenShift Namespace where the ImageStream resides.", +      "value": "openshift" +    }, +    { +      "name": "DATABASE_SERVICE_NAME", +      "displayName": "Database Service Name", +      "description": "The name of the OpenShift Service exposed for the database.", +      "value": "mariadb", +      "required": true +    }, +    { +      "name": "MYSQL_USER", +      "displayName": "MariaDB Connection Username", +      "description": "Username for MariaDB user that will be used for accessing the database.", +      "generate": "expression", +      "from": "user[A-Z0-9]{3}", +      "required": true +    }, +    { +      "name": "MYSQL_PASSWORD", +      "displayName": "MariaDB Connection Password", +      "description": "Password for the MariaDB connection user.", +      "generate": "expression", +      "from": "[a-zA-Z0-9]{16}", +      "required": true +    }, +    { +      "name": "MYSQL_DATABASE", +      "displayName": "MariaDB Database Name", +      "description": "Name of the MariaDB database accessed.", +      "value": "sampledb", +      "required": true +    }, +    { +      "name": "VOLUME_CAPACITY", +      "displayName": "Volume Capacity", +      "description": "Volume space available for data, e.g. 512Mi, 2Gi.", +      "value": "1Gi", +      "required": true +    } +  ], +  "labels": { +    "template": "mariadb-persistent-template" +  } +} diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-ephemeral-template.json index 9a935be5e..329e7a692 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-ephemeral-template.json @@ -60,7 +60,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mongodb:latest", +                "name": "mongodb:3.2",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -182,7 +182,7 @@      },      {        "name": "MONGODB_USER", -      "displayName": "MongoDB User", +      "displayName": "MongoDB Connection Username",        "description": "Username for MongoDB user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -190,8 +190,8 @@      },      {        "name": "MONGODB_PASSWORD", -      "displayName": "MongoDB Password", -      "description": "Password for the MongoDB user.", +      "displayName": "MongoDB Connection Password", +      "description": "Password for the MongoDB connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true @@ -214,5 +214,6 @@    ],    "labels": {      "template": "mongodb-ephemeral-template" -  } +  }, +  "message": "You can connect to the database using MongoDB connection URL mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}"  } diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-persistent-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-persistent-template.json index 4f73d00cc..0fedad71e 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mongodb-persistent-template.json @@ -77,7 +77,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mongodb:latest", +                "name": "mongodb:3.2",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -199,7 +199,7 @@      },      {        "name": "MONGODB_USER", -      "displayName": "MongoDB User", +      "displayName": "MongoDB Connection Username",        "description": "Username for MongoDB user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -207,8 +207,8 @@      },      {        "name": "MONGODB_PASSWORD", -      "displayName": "MongoDB Password", -      "description": "Password for the MongoDB user.", +      "displayName": "MongoDB Connection Password", +      "description": "Password for the MongoDB connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true @@ -238,5 +238,6 @@    ],    "labels": {      "template": "mongodb-persistent-template" -  } +  }, +  "message": "You can connect to the database using MongoDB connection URL mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}"  } diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-ephemeral-template.json index 5f133b946..8a4ec41b2 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-ephemeral-template.json @@ -3,7 +3,6 @@    "apiVersion": "v1",    "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", @@ -60,7 +59,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mysql:latest", +                "name": "mysql:5.6",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -122,10 +121,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${DATABASE_SERVICE_NAME}-data", @@ -179,7 +178,7 @@      },      {        "name": "MYSQL_USER", -      "displayName": "MySQL User", +      "displayName": "MySQL Connection Username",        "description": "Username for MySQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -187,8 +186,8 @@      },      {        "name": "MYSQL_PASSWORD", -      "displayName": "MySQL Password", -      "description": "Password for the MySQL user.", +      "displayName": "MySQL Connection Password", +      "description": "Password for the MySQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-persistent-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-persistent-template.json index 88d8c3940..cae14c998 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/mysql-persistent-template.json @@ -65,7 +65,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "mysql:latest", +                "name": "mysql:5.6",                  "namespace": "${NAMESPACE}"                }              } @@ -173,7 +173,7 @@      },      {        "name": "MYSQL_USER", -      "displayName": "MySQL User", +      "displayName": "MySQL Connection Username",        "description": "Username for MySQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -181,8 +181,8 @@      },      {        "name": "MYSQL_PASSWORD", -      "displayName": "MySQL Password", -      "description": "Password for the MySQL user.", +      "displayName": "MySQL Connection Password", +      "description": "Password for the MySQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-ephemeral-template.json index e90244a6b..2b4b2a0cd 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-ephemeral-template.json @@ -60,7 +60,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "postgresql:latest", +                "name": "postgresql:9.5",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -121,10 +121,10 @@                    }                  ],                  "resources": { -		    "limits": { -			"memory": "${MEMORY_LIMIT}" -		    } -		}, +                  "limits": { +                    "memory": "${MEMORY_LIMIT}" +                  } +                },                  "volumeMounts": [                    {                      "name": "${DATABASE_SERVICE_NAME}-data", @@ -178,7 +178,7 @@      },      {        "name": "POSTGRESQL_USER", -      "displayName": "PostgreSQL User", +      "displayName": "PostgreSQL Connection Username",        "description": "Username for PostgreSQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -186,8 +186,8 @@      },      {        "name": "POSTGRESQL_PASSWORD", -      "displayName": "PostgreSQL Password", -      "description": "Password for the PostgreSQL user.", +      "displayName": "PostgreSQL Connection Password", +      "description": "Password for the PostgreSQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-persistent-template.json b/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-persistent-template.json index 7b05076a5..63a04f08f 100644 --- a/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.3/db-templates/postgresql-persistent-template.json @@ -77,7 +77,7 @@                ],                "from": {                  "kind": "ImageStreamTag", -                "name": "postgresql:latest", +                "name": "postgresql:9.5",                  "namespace": "${NAMESPACE}"                },                "lastTriggeredImage": "" @@ -195,7 +195,7 @@      },      {        "name": "POSTGRESQL_USER", -      "displayName": "PostgreSQL User", +      "displayName": "PostgreSQL Connection Username",        "description": "Username for PostgreSQL user that will be used for accessing the database.",        "generate": "expression",        "from": "user[A-Z0-9]{3}", @@ -203,8 +203,8 @@      },      {        "name": "POSTGRESQL_PASSWORD", -      "displayName": "PostgreSQL Password", -      "description": "Password for the PostgreSQL user.", +      "displayName": "PostgreSQL Connection Password", +      "description": "Password for the PostgreSQL connection user.",        "generate": "expression",        "from": "[a-zA-Z0-9]{16}",        "required": true diff --git a/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/logging-deployer.yaml b/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/logging-deployer.yaml index 77ffee7f9..8b28f872f 100644 --- a/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/logging-deployer.yaml +++ b/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/logging-deployer.yaml @@ -323,4 +323,3 @@ items:      description: "(Deprecated) Node selector operations Curator (label=value)."      name: CURATOR_OPS_NODESELECTOR      value: "" - diff --git a/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/metrics-deployer.yaml b/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/metrics-deployer.yaml index 89639fd67..ab62ae76f 100644 --- a/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/metrics-deployer.yaml +++ b/roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/metrics-deployer.yaml @@ -68,6 +68,8 @@ objects:            value: ${IGNORE_PREFLIGHT}          - name: USE_PERSISTENT_STORAGE            value: ${USE_PERSISTENT_STORAGE} +        - name: DYNAMICALLY_PROVISION_STORAGE +          value: ${DYNAMICALLY_PROVISION_STORAGE}          - name: HAWKULAR_METRICS_HOSTNAME            value: ${HAWKULAR_METRICS_HOSTNAME}          - name: CASSANDRA_NODES @@ -76,6 +78,8 @@ objects:            value: ${CASSANDRA_PV_SIZE}          - name: METRIC_DURATION            value: ${METRIC_DURATION} +        - name: USER_WRITE_ACCESS +          value: ${USER_WRITE_ACCESS}          - name: HEAPSTER_NODE_ID            value: ${HEAPSTER_NODE_ID}          - name: METRIC_RESOLUTION @@ -123,6 +127,10 @@ parameters:    name: USE_PERSISTENT_STORAGE    value: "true"  - +  description: "Set to true to dynamically provision storage, set to false to use use pre-created persistent volumes" +  name: DYNAMICALLY_PROVISION_STORAGE +  value: "false" +-    description: "The number of Cassandra Nodes to deploy for the initial cluster"    name: CASSANDRA_NODES    value: "1" @@ -135,6 +143,10 @@ parameters:    name: METRIC_DURATION    value: "7"  - +  description: "If a user accounts should be allowed to write metrics." +  name: USER_WRITE_ACCESS +  value: "false" +-    description: "The identifier used when generating metric ids in Hawkular"    name: HEAPSTER_NODE_ID    value: "nodename" diff --git a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-ephemeral-template.json b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-ephemeral-template.json index d1ae6de90..4f565206f 100644 --- a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-ephemeral-template.json +++ b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-ephemeral-template.json @@ -10,6 +10,7 @@        "tags": "instant-app,jenkins"      }    }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.",    "objects": [      {        "kind": "Route", @@ -172,7 +173,8 @@        "displayName": "Jenkins Password",        "description": "Password for the Jenkins 'admin' user.",        "generate": "expression", -      "value": "password" +      "from": "[a-zA-Z0-9]{16}", +      "required": true      },      {        "name": "MEMORY_LIMIT", diff --git a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-persistent-template.json b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-persistent-template.json index c7bc3f2fa..eda826a5b 100644 --- a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-persistent-template.json +++ b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkins-persistent-template.json @@ -10,6 +10,7 @@        "tags": "instant-app,jenkins"      }    }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.",    "objects": [      {        "kind": "Route", @@ -189,7 +190,8 @@        "displayName": "Jenkins Password",        "description": "Password for the Jenkins 'admin' user.",        "generate": "expression", -      "value": "password" +      "from": "[a-zA-Z0-9]{16}", +      "required": true      },      {        "name": "MEMORY_LIMIT", diff --git a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkinstemplate.json b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkinstemplate.json index 325663313..fc409f709 100644 --- a/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkinstemplate.json +++ b/roles/openshift_examples/files/examples/v1.3/quickstart-templates/jenkinstemplate.json @@ -10,6 +10,7 @@        "tags": "instant-app,jenkins"      }    }, +  "message": "A Jenkins service has been created in your project.  The username/password are admin/${JENKINS_PASSWORD}.",    "objects": [      {        "kind": "Route", @@ -171,8 +172,7 @@        "kind": "Service",        "apiVersion": "v1",        "metadata": { -        "name": "jenkins-jnlp", -        "creationTimestamp": null +        "name": "jenkins-jnlp"        },        "spec": {          "ports": [ @@ -244,12 +244,13 @@      {        "name": "JENKINS_PASSWORD",        "displayName": "Jenkins Password", -      "description": "Password for the Jenkins user.", +      "description": "Password for the Jenkins 'admin' user.",        "generate": "expression", -      "value": "password" +      "from": "[a-zA-Z0-9]{16}", +      "required": true      }    ],    "labels": { -    "template": "jenkins-ephemeral-template" +    "template": "jenkins-pipeline-template"    }  } diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-streams/jboss-image-streams.json b/roles/openshift_examples/files/examples/v1.3/xpaas-streams/jboss-image-streams.json index 8c21683dc..4edc97f41 100644 --- a/roles/openshift_examples/files/examples/v1.3/xpaas-streams/jboss-image-streams.json +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-streams/jboss-image-streams.json @@ -194,7 +194,7 @@                      {                          "name": "1.2",                          "annotations": { -                            "description": "Decision Server 6.2 S2I images.", +                            "description": "Red Hat JBoss BRMS 6.2 decision server S2I images.",                              "iconClass": "icon-jboss",                              "tags": "builder,decisionserver,java,xpaas",                              "supports":"decisionserver:6.2,java:8,xpaas:1.2", @@ -211,6 +211,56 @@              "kind": "ImageStream",              "apiVersion": "v1",              "metadata": { +                "name": "jboss-decisionserver63-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-decisionserver-6/decisionserver63-openshift", +                "tags": [ +                    { +                        "name": "1.3", +                        "annotations": { +                            "description": "Red Hat JBoss BRMS 6.3 decision server S2I images.", +                            "iconClass": "icon-jboss", +                            "tags": "builder,decisionserver,java,xpaas", +                            "supports":"decisionserver:6.3,java:8,xpaas:1.3", +                            "sampleRepo": "https://github.com/jboss-openshift/openshift-quickstarts.git", +                            "sampleContextDir": "decisionserver/hellorules", +                            "sampleRef": "1.3", +                            "version": "1.3" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": { +                "name": "jboss-processserver63-openshift" +            }, +            "spec": { +                "dockerImageRepository": "registry.access.redhat.com/jboss-processserver-6/processserver63-openshift", +                "tags": [ +                    { +                        "name": "1.3", +                        "annotations": { +                            "description": "Red Hat JBoss BPM Suite 6.3 intelligent process server S2I images.", +                            "iconClass": "icon-jboss", +                            "tags": "builder,processserver,java,xpaas", +                            "supports":"processserver:6.3,java:8,xpaas:1.3", +                            "sampleRepo": "https://github.com/jboss-openshift/openshift-quickstarts.git", +                            "sampleContextDir": "processserver/library", +                            "sampleRef": "1.3", +                            "version": "1.3" +                        } +                    } +                ] +            } +        }, +        { +            "kind": "ImageStream", +            "apiVersion": "v1", +            "metadata": {                  "name": "jboss-datagrid65-openshift"              },              "spec": { diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-amq-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-amq-s2i.json index f09900491..754a3b4c0 100644 --- a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-amq-s2i.json +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-amq-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 A-MQ applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server A-MQ applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,amq,java,messaging,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-amq-s2i"      },      "labels": {          "template": "decisionserver62-amq-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -145,18 +145,16 @@              "required": false          },          { -            "description": "User name for broker admin. If left empty, it will be generated.", -            "name": "AMQ_ADMIN_USERNAME", -            "from": "user[a-zA-Z0-9]{3}", -            "generate": "expression", -            "required": true +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false          },          { -            "description": "Password for broker admin. If left empty, it will be generated.", -            "name": "AMQ_ADMIN_PASSWORD", -            "from": "[a-zA-Z0-9]{8}", -            "generate": "expression", -            "required": true +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false          },          {              "description": "GitHub trigger secret", @@ -460,11 +458,6 @@                                          "name": "https",                                          "containerPort": 8443,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ @@ -609,6 +602,11 @@                                  },                                  "ports": [                                      { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    {                                          "name": "amqp",                                          "containerPort": 5672,                                          "protocol": "TCP" @@ -658,20 +656,24 @@                                          "value": "${MQ_PROTOCOL}"                                      },                                      { -                                        "name": "AMQ_QUEUES", -                                        "value": "${MQ_QUEUES}" +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}"                                      },                                      { -                                        "name": "AMQ_TOPICS", -                                        "value": "${MQ_TOPICS}" +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp"                                      },                                      { -                                        "name": "AMQ_ADMIN_USERNAME", -                                        "value": "${AMQ_ADMIN_USERNAME}" +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        }                                      },                                      { -                                        "name": "AMQ_ADMIN_PASSWORD", -                                        "value": "${AMQ_ADMIN_PASSWORD}" +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}"                                      }                                  ]                              } diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-basic-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-basic-s2i.json index 7f694e0e1..8be4ac90b 100644 --- a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-basic-s2i.json +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-basic-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,java,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-basic-s2i"      },      "labels": {          "template": "decisionserver62-basic-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -301,11 +301,6 @@                                          "name": "http",                                          "containerPort": 8080,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-https-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-https-s2i.json index ea1fcd5dc..bf9047599 100644 --- a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-https-s2i.json +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver62-https-s2i.json @@ -3,16 +3,16 @@      "apiVersion": "v1",      "metadata": {          "annotations": { -            "description": "Application template for BRMS Realtime Decision Server 6 HTTPS applications built using S2I.", +            "description": "Application template for Red Hat JBoss BRMS 6.2 decision server HTTPS applications built using S2I.",              "iconClass": "icon-jboss",              "tags": "decisionserver,java,jboss,xpaas", -            "version": "1.2.0" +            "version": "1.3.3"          },          "name": "decisionserver62-https-s2i"      },      "labels": {          "template": "decisionserver62-https-s2i", -        "xpaas": "1.2.0" +        "xpaas": "1.3.3"      },      "parameters": [          { @@ -403,11 +403,6 @@                                          "name": "https",                                          "containerPort": 8443,                                          "protocol": "TCP" -                                    }, -                                    { -                                        "name": "ping", -                                        "containerPort": 8888, -                                        "protocol": "TCP"                                      }                                  ],                                  "env": [ diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-amq-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-amq-s2i.json new file mode 100644 index 000000000..51e667e02 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-amq-s2i.json @@ -0,0 +1,696 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server A-MQ applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,amq,java,messaging,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-amq-s2i" +    }, +    "labels": { +        "template": "decisionserver63-amq-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "decisionserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's HTTPS 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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's HTTP service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's HTTPS service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "decisionserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "decisionserver-keystore-volume", +                                        "mountPath": "/etc/decisionserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "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": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/decisionserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "decisionserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-basic-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-basic-s2i.json new file mode 100644 index 000000000..c5f0d006a --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-basic-s2i.json @@ -0,0 +1,339 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-basic-s2i" +    }, +    "labels": { +        "template": "decisionserver63-basic-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-https-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-https-s2i.json new file mode 100644 index 000000000..3db0e4c84 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/decisionserver63-https-s2i.json @@ -0,0 +1,473 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BRMS 6.3 decision server HTTPS applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "decisionserver,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "decisionserver63-https-s2i" +    }, +    "labels": { +        "template": "decisionserver63-https-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "decisionserver/hellorules", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "decisionserver-app-secret", +            "required": true +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's https port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-decisionserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "decisionserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "decisionserver-keystore-volume", +                                        "mountPath": "/etc/decisionserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/decisionserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "decisionserver-keystore-volume", +                                "secret": { +                                    "secretName": "${HTTPS_SECRET}" +                                } +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json new file mode 100644 index 000000000..1dea463ac --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-persistent-s2i.json @@ -0,0 +1,1079 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and MySQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-mysql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-mysql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Split the data directory for each node in a mesh.", +            "name": "AMQ_SPLIT", +            "value": "false", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB,${APPLICATION_NAME}-mysql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_SPLIT", +                                        "value": "${AMQ_SPLIT}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ], +                        "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": [ +                    "ReadWriteMany" +                ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-s2i.json new file mode 100644 index 000000000..42264585b --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-mysql-s2i.json @@ -0,0 +1,959 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and MySQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-mysql-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-mysql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json new file mode 100644 index 000000000..f6d0c99ed --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-persistent-s2i.json @@ -0,0 +1,1052 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and PostgreSQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-postgresql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-postgresql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Split the data directory for each node in a mesh.", +            "name": "AMQ_SPLIT", +            "value": "false", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB,${APPLICATION_NAME}-postgresql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "mountPath": "/opt/amq/data", +                                        "name": "${APPLICATION_NAME}-amq-pvol" +                                    } +                                ], +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_SPLIT", +                                        "value": "${AMQ_SPLIT}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ], +                        "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": [ +                    "ReadWriteMany" +                ], +                "resources": { +                    "requests": { +                        "storage": "${VOLUME_CAPACITY}" +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-s2i.json new file mode 100644 index 000000000..41c726cf0 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-amq-postgresql-s2i.json @@ -0,0 +1,932 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server AMQ and PostgreSQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,amq,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-amq-postgresql-s2i" +    }, +    "labels": { +        "template": "processserver63-amq-postgresql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "JNDI name of request queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +            "value": "queue/KIE.SERVER.REQUEST", +            "required": false +        }, +        { +            "description": "JNDI name of response queue for JMS.", +            "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +            "value": "queue/KIE.SERVER.RESPONSE", +            "required": false +        }, +        { +            "description": "JNDI name of executor queue for JMS.", +            "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +            "value": "queue/KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "JNDI name for connection factory used by applications to connect to the broker, e.g. java:/JmsXA", +            "name": "MQ_JNDI", +            "value": "java:/JmsXA", +            "required": false +        }, +        { +            "description": "Broker protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. Only `openwire` is supported by EAP.", +            "name": "MQ_PROTOCOL", +            "value": "openwire", +            "required": false +        }, +        { +            "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_QUEUES", +            "value": "KIE.SERVER.REQUEST,KIE.SERVER.RESPONSE,KIE.SERVER.EXECUTOR", +            "required": false +        }, +        { +            "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. Also, they will be made accessible as JNDI resources in EAP.", +            "name": "MQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.", +            "name": "MQ_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "The discovery agent type to use for discovering mesh endpoints.  'dns' will use OpenShift's DNS service to resolve endpoints.  'kube' will use Kubernetes REST API to resolve service endpoints.  If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.", +            "name": "AMQ_MESH_DISCOVERY_TYPE", +            "value": "kube", +            "required": false +        }, +        { +            "description": "The A-MQ storage usage limit", +            "name": "AMQ_STORAGE_USAGE_LIMIT", +            "value": "100 gb", +            "required": false +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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": "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 OpenWire port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_REQUEST", +                                        "value": "${KIE_SERVER_JMS_QUEUES_REQUEST}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_JMS_QUEUES_RESPONSE", +                                        "value": "${KIE_SERVER_JMS_QUEUES_RESPONSE}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_EXECUTOR_JMS_QUEUE", +                                        "value": "${KIE_SERVER_EXECUTOR_JMS_QUEUE}" +                                    }, +                                    { +                                        "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": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        }, +        { +            "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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "jboss-amq-62:1.3" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-amq" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-amq", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-amq", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-amq", +                                "image": "jboss-amq-62", +                                "imagePullPolicy": "Always", +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/amq/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp", +                                        "containerPort": 5672, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "amqp-ssl", +                                        "containerPort": 5671, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "mqtt", +                                        "containerPort": 1883, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp", +                                        "containerPort": 61613, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "stomp-ssl", +                                        "containerPort": 61612, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp", +                                        "containerPort": 61616, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "tcp-ssl", +                                        "containerPort": 61617, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "AMQ_USER", +                                        "value": "${MQ_USERNAME}" +                                    }, +                                    { +                                        "name": "AMQ_PASSWORD", +                                        "value": "${MQ_PASSWORD}" +                                    }, +                                    { +                                        "name": "AMQ_TRANSPORTS", +                                        "value": "${MQ_PROTOCOL}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_DISCOVERY_TYPE", +                                        "value": "${AMQ_MESH_DISCOVERY_TYPE}" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAME", +                                        "value": "${APPLICATION_NAME}-amq-tcp" +                                    }, +                                    { +                                        "name": "AMQ_MESH_SERVICE_NAMESPACE", +                                        "valueFrom": { +                                            "fieldRef": { +                                                "fieldPath": "metadata.namespace" +                                            } +                                        } +                                    }, +                                    { +                                        "name": "AMQ_STORAGE_USAGE_LIMIT", +                                        "value": "${AMQ_STORAGE_USAGE_LIMIT}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-basic-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-basic-s2i.json new file mode 100644 index 000000000..170c919cb --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-basic-s2i.json @@ -0,0 +1,345 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,javaee,java,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-basic-s2i" +    }, +    "labels": { +        "template": "processserver63-basic-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.H2Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts.git", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "The web server's http port." +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-http", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +} diff --git a/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-mysql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-mysql-persistent-s2i.json new file mode 100644 index 000000000..89d0db1a6 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-mysql-persistent-s2i.json @@ -0,0 +1,792 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server MySQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-mysql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-mysql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-mysql=DB,${APPLICATION_NAME}-mysql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.3/xpaas-templates/processserver63-mysql-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-mysql-s2i.json new file mode 100644 index 000000000..26cab29f8 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-mysql-s2i.json @@ -0,0 +1,716 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server MySQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,mysql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-mysql-s2i" +    }, +    "labels": { +        "template": "processserver63-mysql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.MySQL5Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "Sets how the table names are stored and compared.", +            "name": "MYSQL_LOWER_CASE_TABLE_NAMES", +            "required": false +        }, +        { +            "description": "The maximum permitted number of simultaneous client connections.", +            "name": "MYSQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "The minimum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MIN_WORD_LEN", +            "required": false +        }, +        { +            "description": "The maximum length of the word to be included in a FULLTEXT index.", +            "name": "MYSQL_FT_MAX_WORD_LEN", +            "required": false +        }, +        { +            "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.", +            "name": "MYSQL_AIO", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "mysql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-mysql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-mysql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-mysql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-mysql", +                                "image": "mysql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.3/xpaas-templates/processserver63-postgresql-persistent-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-postgresql-persistent-s2i.json new file mode 100644 index 000000000..32a512829 --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-postgresql-persistent-s2i.json @@ -0,0 +1,765 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server PostgreSQL applications with persistent storage built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-postgresql-persistent-s2i" +    }, +    "labels": { +        "template": "processserver63-postgresql-persistent-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Size of persistent storage for database volume.", +            "name": "VOLUME_CAPACITY", +            "value": "512Mi", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "name": "DB_SERVICE_PREFIX_MAPPING", +                                        "value": "${APPLICATION_NAME}-postgresql=DB,${APPLICATION_NAME}-postgresql=QUARTZ" +                                    }, +                                    { +                                        "name": "TX_DATABASE_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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JNDI", +                                        "value": "${DB_JNDI}NotManaged" +                                    }, +                                    { +                                        "name": "QUARTZ_USERNAME", +                                        "value": "${DB_USERNAME}" +                                    }, +                                    { +                                        "name": "QUARTZ_PASSWORD", +                                        "value": "${DB_PASSWORD}" +                                    }, +                                    { +                                        "name": "QUARTZ_DATABASE", +                                        "value": "${DB_DATABASE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "QUARTZ_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "QUARTZ_JTA", +                                        "value": "false" +                                    }, +                                    { +                                        "name": "QUARTZ_NONXA", +                                        "value": "true" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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/v1.3/xpaas-templates/processserver63-postgresql-s2i.json b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-postgresql-s2i.json new file mode 100644 index 000000000..55e2199bb --- /dev/null +++ b/roles/openshift_examples/files/examples/v1.3/xpaas-templates/processserver63-postgresql-s2i.json @@ -0,0 +1,689 @@ +{ +    "kind": "Template", +    "apiVersion": "v1", +    "metadata": { +        "annotations": { +            "description": "Application template for Red Hat JBoss BPM Suite 6.3 intelligent process server PostgreSQL applications built using S2I.", +            "iconClass": "icon-jboss", +            "tags": "processserver,postgresql,javaee,java,database,jboss,xpaas", +            "version": "1.3.3" +        }, +        "name": "processserver63-postgresql-s2i" +    }, +    "labels": { +        "template": "processserver63-postgresql-s2i", +        "xpaas": "1.3.3" +    }, +    "parameters": [ +        { +            "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2", +            "name": "KIE_CONTAINER_DEPLOYMENT", +            "value": "processserver-library=org.openshift.quickstarts:processserver-library:1.3.0.Final", +            "required": false +        }, +        { +            "description": "The protocol to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PROTOCOL", +            "value": "https", +            "required": false +        }, +        { +            "description": "The port to access the KIE Server REST interface.", +            "name": "KIE_SERVER_PORT", +            "value": "8443", +            "required": false +        }, +        { +            "description": "The user name to access the KIE Server REST or JMS interface.", +            "name": "KIE_SERVER_USER", +            "value": "kieserver", +            "required": false +        }, +        { +            "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).", +            "name": "KIE_SERVER_PASSWORD", +            "from": "[a-zA-Z]{6}[0-9]{1}!", +            "generate": "expression", +            "required": false +        }, +        { +            "description": "JAAS LoginContext domain that shall be used to authenticate users when using JMS.", +            "name": "KIE_SERVER_DOMAIN", +            "value": "other", +            "required": false +        }, +        { +            "description": "Hibernate persistence dialect.", +            "name": "KIE_SERVER_PERSISTENCE_DIALECT", +            "value": "org.hibernate.dialect.PostgreSQL82Dialect", +            "required": false +        }, +        { +            "description": "The name for the application.", +            "name": "APPLICATION_NAME", +            "value": "kie-app", +            "required": true +        }, +        { +            "description": "Custom hostname for http service route.  Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTP", +            "value": "", +            "required": false +        }, +        { +            "description": "Custom hostname for https service route.  Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>", +            "name": "HOSTNAME_HTTPS", +            "value": "", +            "required": false +        }, +        { +            "description": "Git source URI for application", +            "name": "SOURCE_REPOSITORY_URL", +            "value": "https://github.com/jboss-openshift/openshift-quickstarts", +            "required": true +        }, +        { +            "description": "Git branch/tag reference", +            "name": "SOURCE_REPOSITORY_REF", +            "value": "1.3", +            "required": false +        }, +        { +            "description": "Path within Git project to build; empty for root project directory.", +            "name": "CONTEXT_DIR", +            "value": "processserver/library", +            "required": false +        }, +        { +            "description": "Database JNDI name used by application to resolve the datasource, e.g. java:/jboss/datasources/ExampleDS", +            "name": "DB_JNDI", +            "value": "java:jboss/datasources/ExampleDS", +            "required": false +        }, +        { +            "description": "Database name", +            "name": "DB_DATABASE", +            "value": "root", +            "required": true +        }, +        { +            "description": "Queue names", +            "name": "HORNETQ_QUEUES", +            "value": "", +            "required": false +        }, +        { +            "description": "Topic names", +            "name": "HORNETQ_TOPICS", +            "value": "", +            "required": false +        }, +        { +            "description": "The name of the secret containing the keystore file", +            "name": "HTTPS_SECRET", +            "value": "processserver-app-secret", +            "required": false +        }, +        { +            "description": "The name of the keystore file within the secret", +            "name": "HTTPS_KEYSTORE", +            "value": "keystore.jks", +            "required": false +        }, +        { +            "description": "The name associated with the server certificate", +            "name": "HTTPS_NAME", +            "value": "jboss", +            "required": false +        }, +        { +            "description": "The password for the keystore and certificate", +            "name": "HTTPS_PASSWORD", +            "value": "mykeystorepass", +            "required": false +        }, +        { +            "description": "Database user name", +            "name": "DB_USERNAME", +            "from": "user[a-zA-Z0-9]{3}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Database user password", +            "name": "DB_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Sets xa-pool/min-pool-size for the configured datasource.", +            "name": "DB_MIN_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets xa-pool/max-pool-size for the configured datasource.", +            "name": "DB_MAX_POOL_SIZE", +            "required": false +        }, +        { +            "description": "Sets transaction-isolation for the configured datasource.", +            "name": "DB_TX_ISOLATION", +            "required": false +        }, +        { +            "description": "The maximum number of client connections allowed. This also sets the maximum number of prepared transactions.", +            "name": "POSTGRESQL_MAX_CONNECTIONS", +            "required": false +        }, +        { +            "description": "Configures how much memory is dedicated to PostgreSQL for caching data.", +            "name": "POSTGRESQL_SHARED_BUFFERS", +            "required": false +        }, +        { +            "description": "HornetQ cluster admin password", +            "name": "HORNETQ_CLUSTER_PASSWORD", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "GitHub trigger secret", +            "name": "GITHUB_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Generic build trigger secret", +            "name": "GENERIC_WEBHOOK_SECRET", +            "from": "[a-zA-Z0-9]{8}", +            "generate": "expression", +            "required": true +        }, +        { +            "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.", +            "name": "IMAGE_STREAM_NAMESPACE", +            "value": "openshift", +            "required": true +        } +    ], +    "objects": [ +        { +            "kind": "Service", +            "apiVersion": "v1", +            "spec": { +                "ports": [ +                    { +                        "port": 8080, +                        "targetPort": 8080 +                    } +                ], +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                } +            }, +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "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": "secure-${APPLICATION_NAME}", +                "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", +            "metadata": { +                "name": "${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's http service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTP}", +                "to": { +                    "name": "${APPLICATION_NAME}" +                } +            } +        }, +        { +            "kind": "Route", +            "apiVersion": "v1", +            "id": "${APPLICATION_NAME}-https", +            "metadata": { +                "name": "secure-${APPLICATION_NAME}", +                "labels": { +                    "application": "${APPLICATION_NAME}" +                }, +                "annotations": { +                    "description": "Route for application's https service." +                } +            }, +            "spec": { +                "host": "${HOSTNAME_HTTPS}", +                "to": { +                    "name": "secure-${APPLICATION_NAME}" +                }, +                "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": "${SOURCE_REPOSITORY_URL}", +                        "ref": "${SOURCE_REPOSITORY_REF}" +                    }, +                    "contextDir": "${CONTEXT_DIR}" +                }, +                "strategy": { +                    "type": "Source", +                    "sourceStrategy": { +                        "env": [ +                            { +                                "name": "KIE_CONTAINER_DEPLOYMENT", +                                "value": "${KIE_CONTAINER_DEPLOYMENT}" +                            } +                        ], +                        "forcePull": true, +                        "from": { +                            "kind": "ImageStreamTag", +                            "namespace": "${IMAGE_STREAM_NAMESPACE}", +                            "name": "jboss-processserver63-openshift:1.3" +                        } +                    } +                }, +                "output": { +                    "to": { +                        "kind": "ImageStreamTag", +                        "name": "${APPLICATION_NAME}:latest" +                    } +                }, +                "triggers": [ +                    { +                        "type": "GitHub", +                        "github": { +                            "secret": "${GITHUB_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "Generic", +                        "generic": { +                            "secret": "${GENERIC_WEBHOOK_SECRET}" +                        } +                    }, +                    { +                        "type": "ImageChange", +                        "imageChange": {} +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ] +            } +        }, +        { +            "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}" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "serviceAccountName": "processserver-service-account", +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}", +                                "image": "${APPLICATION_NAME}", +                                "imagePullPolicy": "Always", +                                "volumeMounts": [ +                                    { +                                        "name": "processserver-keystore-volume", +                                        "mountPath": "/etc/processserver-secret-volume", +                                        "readOnly": true +                                    } +                                ], +                                "livenessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/livenessProbe.sh" +                                        ] +                                    } +                                }, +                                "readinessProbe": { +                                    "exec": { +                                        "command": [ +                                            "/bin/bash", +                                            "-c", +                                            "/opt/eap/bin/readinessProbe.sh" +                                        ] +                                    } +                                }, +                                "ports": [ +                                    { +                                        "name": "jolokia", +                                        "containerPort": 8778, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "http", +                                        "containerPort": 8080, +                                        "protocol": "TCP" +                                    }, +                                    { +                                        "name": "https", +                                        "containerPort": 8443, +                                        "protocol": "TCP" +                                    } +                                ], +                                "env": [ +                                    { +                                        "name": "KIE_CONTAINER_DEPLOYMENT", +                                        "value": "${KIE_CONTAINER_DEPLOYMENT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PROTOCOL", +                                        "value": "${KIE_SERVER_PROTOCOL}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PORT", +                                        "value": "${KIE_SERVER_PORT}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_USER", +                                        "value": "${KIE_SERVER_USER}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PASSWORD", +                                        "value": "${KIE_SERVER_PASSWORD}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_DOMAIN", +                                        "value": "${KIE_SERVER_DOMAIN}" +                                    }, +                                    { +                                        "name": "KIE_SERVER_PERSISTENCE_DIALECT", +                                        "value": "${KIE_SERVER_PERSISTENCE_DIALECT}" +                                    }, +                                    { +                                        "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": "DB_MIN_POOL_SIZE", +                                        "value": "${DB_MIN_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_MAX_POOL_SIZE", +                                        "value": "${DB_MAX_POOL_SIZE}" +                                    }, +                                    { +                                        "name": "DB_TX_ISOLATION", +                                        "value": "${DB_TX_ISOLATION}" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE_DIR", +                                        "value": "/etc/processserver-secret-volume" +                                    }, +                                    { +                                        "name": "HTTPS_KEYSTORE", +                                        "value": "${HTTPS_KEYSTORE}" +                                    }, +                                    { +                                        "name": "HTTPS_NAME", +                                        "value": "${HTTPS_NAME}" +                                    }, +                                    { +                                        "name": "HTTPS_PASSWORD", +                                        "value": "${HTTPS_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_CLUSTER_PASSWORD", +                                        "value": "${HORNETQ_CLUSTER_PASSWORD}" +                                    }, +                                    { +                                        "name": "HORNETQ_QUEUES", +                                        "value": "${HORNETQ_QUEUES}" +                                    }, +                                    { +                                        "name": "HORNETQ_TOPICS", +                                        "value": "${HORNETQ_TOPICS}" +                                    } +                                ] +                            } +                        ], +                        "volumes": [ +                            { +                                "name": "processserver-keystore-volume", +                                "secret": { +                                    "secretName": "${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", +                                "namespace": "${IMAGE_STREAM_NAMESPACE}", +                                "name": "postgresql:latest" +                            } +                        } +                    }, +                    { +                        "type": "ConfigChange" +                    } +                ], +                "replicas": 1, +                "selector": { +                    "deploymentConfig": "${APPLICATION_NAME}-postgresql" +                }, +                "template": { +                    "metadata": { +                        "name": "${APPLICATION_NAME}-postgresql", +                        "labels": { +                            "deploymentConfig": "${APPLICATION_NAME}-postgresql", +                            "application": "${APPLICATION_NAME}" +                        } +                    }, +                    "spec": { +                        "terminationGracePeriodSeconds": 60, +                        "containers": [ +                            { +                                "name": "${APPLICATION_NAME}-postgresql", +                                "image": "postgresql", +                                "imagePullPolicy": "Always", +                                "ports": [ +                                    { +                                        "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}" +                                    } +                                ] +                            } +                        ] +                    } +                } +            } +        } +    ] +}  | 
