diff --git a/charts/osm-arc/Chart.yaml b/charts/osm-arc/Chart.yaml index 254042fb..808a529d 100644 --- a/charts/osm-arc/Chart.yaml +++ b/charts/osm-arc/Chart.yaml @@ -15,15 +15,14 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.5.0 +version: 0.6.0-rc.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: v0.5.0 +appVersion: v0.6.0-rc.1 dependencies: - name: osm - version: "0.5.0" + version: "0.6.0-rc.1" repository: "https://openservicemesh.github.io/osm" - diff --git a/charts/osm-arc/values.yaml b/charts/osm-arc/values.yaml index 7e5b90b6..b9365e49 100644 --- a/charts/osm-arc/values.yaml +++ b/charts/osm-arc/values.yaml @@ -19,7 +19,13 @@ osm: enforceSingleMesh: true enablePrometheus: false deployJaeger: false + customLogAnalyticsWorkspace: false + customerID: 49a4d43a-81ef-4607-83f6-a13872c6ae60 + sharedKey: 5q+pyUKQtxtef8ZGTb+aYYcFWR54lmtXpA0AYWJSqUOGBRd9AHgDZZmb0uuLpjOjIMZTp+F3F4e5JUMOWUmHHw== + fluentbitOutput: azure + webhookConfigNamePrefix: arc-osm-webhook sidecarImage: mcr.microsoft.com/oss/envoyproxy/envoy:v1.15.0 + connectVault: false alpine: image: diff --git a/test/bats/test.bats b/test/bats/test.bats index eda89fe8..75694839 100644 --- a/test/bats/test.bats +++ b/test/bats/test.bats @@ -32,7 +32,7 @@ SLEEP_TIME_DEPLOYMENTS=10 } @test "mutating webhook has been deployed" { - run wait_for_process $WAIT_TIME $SLEEP_TIME "kubectl get mutatingwebhookconfigurations.admissionregistration.k8s.io osm-webhook-osm" + run wait_for_process $WAIT_TIME $SLEEP_TIME "kubectl get mutatingwebhookconfigurations.admissionregistration.k8s.io arc-osm-webhook-osm" assert_success }