From cda645d518a3afe5be40b4e184ab9596be2501a0 Mon Sep 17 00:00:00 2001 From: Erin Corson Date: Wed, 20 May 2020 19:40:15 -0600 Subject: [PATCH] add labels to psql and mysql server samples --- config/samples/azure_v1alpha2_mysqlserver.yaml | 3 +++ config/samples/azure_v1alpha2_postgresqlserver.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/config/samples/azure_v1alpha2_mysqlserver.yaml b/config/samples/azure_v1alpha2_mysqlserver.yaml index 676cbde19da..720c7592d7a 100644 --- a/config/samples/azure_v1alpha2_mysqlserver.yaml +++ b/config/samples/azure_v1alpha2_mysqlserver.yaml @@ -2,6 +2,9 @@ apiVersion: azure.microsoft.com/v1alpha2 kind: MySQLServer metadata: name: mysqlserver-sample + labels: # Provide tags to add to the KeyVault as labels + tag1: value1 + tag2: value2 spec: location: eastus2 resourceGroup: resourcegroup-azure-operators diff --git a/config/samples/azure_v1alpha2_postgresqlserver.yaml b/config/samples/azure_v1alpha2_postgresqlserver.yaml index a0c4a3d3a0d..67f117de7f4 100644 --- a/config/samples/azure_v1alpha2_postgresqlserver.yaml +++ b/config/samples/azure_v1alpha2_postgresqlserver.yaml @@ -2,6 +2,9 @@ apiVersion: azure.microsoft.com/v1alpha2 kind: PostgreSQLServer metadata: name: postgresqlserver-sample + labels: # Provide tags to add to the KeyVault as labels + tag1: value1 + tag2: value2 spec: location: eastus resourceGroup: resourcegroup-azure-operators