github.com/verrazzano/verrazzano@v1.7.1/tests/testdata/install-configurations/install-dev-pvc-keycloak-override.yaml (about) 1 # Copyright (c) 2021, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 # 4 # Configure a persistent volume for KeyCloak MySQL in dev install profile 5 apiVersion: install.verrazzano.io/v1alpha1 6 kind: Verrazzano 7 metadata: 8 name: dev-mysql-storage-example 9 spec: 10 profile: dev 11 components: 12 keycloak: 13 mysql: 14 volumeSource: 15 persistentVolumeClaim: 16 claimName: mysql # Use the "mysql" PVC template for the MySQL volume configuration 17 volumeClaimSpecTemplates: 18 - metadata: 19 name: mysql 20 spec: 21 resources: 22 requests: 23 storage: 100Gi