--- apiVersion: template.openshift.io/v1 kind: Template labels: app: cakephp-mysql-example template: cakephp-mysql-example message: |- The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/cakephp-ex/blob/master/README.md. metadata: annotations: description: |- An example CakePHP application with a MySQL database. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/cakephp-ex/blob/master/README.md. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing. iconClass: icon-php openshift.io/display-name: CakePHP + MySQL (Ephemeral) openshift.io/documentation-url: https://github.com/sclorg/cakephp-ex openshift.io/long-description: This template defines resources needed to develop a CakePHP application, including a build configuration, application deployment configuration, and database deployment configuration. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only. openshift.io/provider-display-name: Red Hat, Inc. openshift.io/support-url: https://access.redhat.com samples.operator.openshift.io/version: 4.18.25 tags: quickstart,php,cakephp template.openshift.io/bindable: "false" creationTimestamp: "2025-10-11T10:37:43Z" labels: samples.operator.openshift.io/managed: "true" managedFields: - apiVersion: template.openshift.io/v1 fieldsType: FieldsV1 fieldsV1: f:labels: .: {} f:app: {} f:template: {} f:message: {} f:metadata: f:annotations: .: {} f:description: {} f:iconClass: {} f:openshift.io/display-name: {} f:openshift.io/documentation-url: {} f:openshift.io/long-description: {} f:openshift.io/provider-display-name: {} f:openshift.io/support-url: {} f:samples.operator.openshift.io/version: {} f:tags: {} f:template.openshift.io/bindable: {} f:labels: .: {} f:samples.operator.openshift.io/managed: {} f:objects: {} f:parameters: {} manager: cluster-samples-operator operation: Update time: "2025-10-11T10:37:43Z" name: cakephp-mysql-example namespace: openshift resourceVersion: "17378" uid: 5d67c8c2-dc7a-4bbf-91c1-27a875417333 objects: - apiVersion: v1 kind: Secret metadata: name: ${NAME} stringData: cakephp-secret-token: ${CAKEPHP_SECRET_TOKEN} cakephp-security-salt: ${CAKEPHP_SECURITY_SALT} database-password: ${DATABASE_PASSWORD} database-user: ${DATABASE_USER} - apiVersion: v1 kind: Service metadata: annotations: description: Exposes and load balances the application pods service.alpha.openshift.io/dependencies: '[{"name": "${DATABASE_SERVICE_NAME}", "kind": "Service"}]' name: ${NAME} spec: ports: - name: web port: 8080 targetPort: 8080 selector: name: ${NAME} - apiVersion: route.openshift.io/v1 kind: Route metadata: name: ${NAME} spec: host: ${APPLICATION_DOMAIN} to: kind: Service name: ${NAME} - apiVersion: image.openshift.io/v1 kind: ImageStream metadata: annotations: description: Keeps track of changes in the application image name: ${NAME} - apiVersion: build.openshift.io/v1 kind: BuildConfig metadata: annotations: description: Defines how to build the application template.alpha.openshift.io/wait-for-ready: "true" name: ${NAME} spec: output: to: kind: ImageStreamTag name: ${NAME}:latest postCommit: script: ./vendor/bin/phpunit source: contextDir: ${CONTEXT_DIR} git: ref: ${SOURCE_REPOSITORY_REF} uri: ${SOURCE_REPOSITORY_URL} type: Git strategy: sourceStrategy: env: - name: COMPOSER_MIRROR value: ${COMPOSER_MIRROR} from: kind: ImageStreamTag name: php:${PHP_VERSION} namespace: ${NAMESPACE} type: Source triggers: - type: ImageChange - type: ConfigChange - github: secret: ${GITHUB_WEBHOOK_SECRET} type: GitHub - apiVersion: apps.openshift.io/v1 kind: DeploymentConfig metadata: annotations: description: Defines how to deploy the application server template.alpha.openshift.io/wait-for-ready: "true" name: ${NAME} spec: replicas: 1 selector: name: ${NAME} strategy: recreateParams: pre: execNewPod: command: - ./migrate-database.sh containerName: cakephp-mysql-example failurePolicy: Retry type: Recreate template: metadata: labels: name: ${NAME} name: ${NAME} spec: containers: - env: - name: DATABASE_SERVICE_NAME value: ${DATABASE_SERVICE_NAME} - name: DATABASE_ENGINE value: ${DATABASE_ENGINE} - name: DATABASE_NAME value: ${DATABASE_NAME} - name: DATABASE_USER valueFrom: secretKeyRef: key: database-user name: ${NAME} - name: DATABASE_PASSWORD valueFrom: secretKeyRef: key: database-password name: ${NAME} - name: CAKEPHP_SECRET_TOKEN valueFrom: secretKeyRef: key: cakephp-secret-token name: ${NAME} - name: CAKEPHP_SECURITY_SALT valueFrom: secretKeyRef: key: cakephp-security-salt name: ${NAME} - name: OPCACHE_REVALIDATE_FREQ value: ${OPCACHE_REVALIDATE_FREQ} image: ' ' livenessProbe: httpGet: path: /health.php port: 8080 initialDelaySeconds: 30 periodSeconds: 60 timeoutSeconds: 3 name: cakephp-mysql-example ports: - containerPort: 8080 readinessProbe: httpGet: path: /health.php port: 8080 initialDelaySeconds: 3 periodSeconds: 60 timeoutSeconds: 3 resources: limits: memory: ${MEMORY_LIMIT} triggers: - imageChangeParams: automatic: true containerNames: - cakephp-mysql-example from: kind: ImageStreamTag name: ${NAME}:latest type: ImageChange - type: ConfigChange - apiVersion: v1 kind: Service metadata: annotations: description: Exposes the database server name: ${DATABASE_SERVICE_NAME} spec: ports: - name: mysql port: 3306 targetPort: 3306 selector: name: ${DATABASE_SERVICE_NAME} - apiVersion: apps.openshift.io/v1 kind: DeploymentConfig metadata: annotations: description: Defines how to deploy the database template.alpha.openshift.io/wait-for-ready: "true" name: ${DATABASE_SERVICE_NAME} spec: replicas: 1 selector: name: ${DATABASE_SERVICE_NAME} strategy: type: Recreate template: metadata: labels: name: ${DATABASE_SERVICE_NAME} name: ${DATABASE_SERVICE_NAME} spec: containers: - env: - name: MYSQL_USER valueFrom: secretKeyRef: key: database-user name: ${NAME} - name: MYSQL_PASSWORD valueFrom: secretKeyRef: key: database-password name: ${NAME} - name: MYSQL_DATABASE value: ${DATABASE_NAME} - name: MYSQL_DEFAULT_AUTHENTICATION_PLUGIN value: ${MYSQL_DEFAULT_AUTHENTICATION_PLUGIN} image: ' ' livenessProbe: initialDelaySeconds: 30 tcpSocket: port: 3306 timeoutSeconds: 1 name: mysql ports: - containerPort: 3306 readinessProbe: exec: command: - /bin/sh - -i - -c - MYSQL_PWD='${DATABASE_PASSWORD}' mysql -h 127.0.0.1 -u ${DATABASE_USER} -D ${DATABASE_NAME} -e 'SELECT 1' initialDelaySeconds: 5 timeoutSeconds: 1 resources: limits: memory: ${MEMORY_MYSQL_LIMIT} volumeMounts: - mountPath: /var/lib/mysql/data name: data volumes: - emptyDir: {} name: data triggers: - imageChangeParams: automatic: true containerNames: - mysql from: kind: ImageStreamTag name: mysql:${MYSQL_VERSION} namespace: ${NAMESPACE} type: ImageChange - type: ConfigChange parameters: - description: The name assigned to all of the frontend objects defined in this template. displayName: Name name: NAME required: true value: cakephp-mysql-example - description: The OpenShift Namespace where the ImageStream resides. displayName: Namespace name: NAMESPACE required: true value: openshift - description: Version of PHP image to be used (7.3-ubi7, 7.4-ubi8, or latest). displayName: PHP Version name: PHP_VERSION required: true value: 7.4-ubi8 - description: Version of MySQL image to be used (8.0-el8 or latest). displayName: MySQL Version name: MYSQL_VERSION required: true value: 8.0-el8 - description: Maximum amount of memory the CakePHP container can use. displayName: Memory Limit name: MEMORY_LIMIT required: true value: 512Mi - description: Maximum amount of memory the MySQL container can use. displayName: Memory Limit (MySQL) name: MEMORY_MYSQL_LIMIT required: true value: 512Mi - description: The URL of the repository with your application source code. displayName: Git Repository URL name: SOURCE_REPOSITORY_URL required: true value: https://github.com/sclorg/cakephp-ex.git - description: Set this to a branch name, tag or other ref of your repository if you are not using the default branch. displayName: Git Reference name: SOURCE_REPOSITORY_REF - description: Set this to the relative path to your project if it is not in the root of your repository. displayName: Context Directory name: CONTEXT_DIR - description: The exposed hostname that will route to the CakePHP service, if left blank a value will be defaulted. displayName: Application Hostname name: APPLICATION_DOMAIN - description: Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted. displayName: GitHub Webhook Secret from: '[a-zA-Z0-9]{40}' generate: expression name: GITHUB_WEBHOOK_SECRET - displayName: Database Service Name name: DATABASE_SERVICE_NAME required: true value: mysql - description: 'Database engine: postgresql, mysql or sqlite (default).' displayName: Database Engine name: DATABASE_ENGINE required: true value: mysql - displayName: Database Name name: DATABASE_NAME required: true value: default - displayName: Database User name: DATABASE_USER required: true value: cakephp - displayName: Database Password from: '[a-zA-Z0-9]{16}' generate: expression name: DATABASE_PASSWORD - description: Set this to a long random string. displayName: CakePHP secret token from: '[\w]{50}' generate: expression name: CAKEPHP_SECRET_TOKEN - description: Security salt for session hash. displayName: CakePHP Security Salt from: '[a-zA-Z0-9]{40}' generate: expression name: CAKEPHP_SECURITY_SALT - description: How often to check script timestamps for updates, in seconds. 0 will result in OPcache checking for updates on every request. displayName: OPcache Revalidation Frequency name: OPCACHE_REVALIDATE_FREQ value: "2" - description: The custom Composer mirror URL displayName: Custom Composer Mirror URL name: COMPOSER_MIRROR - description: 'The custom MySQL default authentication plugin (default: mysql_native_password), might be changed to caching_sha2_password once PHP client supports it.' displayName: MySQL authentication plugin name: MYSQL_DEFAULT_AUTHENTICATION_PLUGIN value: mysql_native_password