github.com/verrazzano/verrazzano@v1.7.1/tests/testdata/install-configurations/install-managed-cluster-default-volume-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 storage override for a managed cluster profile. This should only affect the Prometheus component. 5 # 6 apiVersion: install.verrazzano.io/v1alpha1 7 kind: Verrazzano 8 metadata: 9 name: mgdcluster-storage-override-example 10 spec: 11 profile: managed-cluster 12 defaultVolumeSource: 13 persistentVolumeClaim: 14 claimName: promstorage # Use the "promstorage" PVC template for the storage configuration 15 volumeClaimSpecTemplates: 16 - metadata: 17 name: promstorage 18 spec: 19 resources: 20 requests: 21 storage: 100Gi 22