From 5e7b39ca403a22e62575c37faf848f300ec0294b Mon Sep 17 00:00:00 2001 From: Anirudh Ramanathan Date: Fri, 20 Aug 2021 18:30:40 -0700 Subject: [PATCH 1/2] prepare for v0.6.3 --- signadot/workspaces/templates/agent.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/signadot/workspaces/templates/agent.yaml b/signadot/workspaces/templates/agent.yaml index cc072ac..98dd0d5 100644 --- a/signadot/workspaces/templates/agent.yaml +++ b/signadot/workspaces/templates/agent.yaml @@ -384,11 +384,13 @@ spec: type: array type: object id: - description: ID should be a unique identifier for the workspace. It - can be up to 63 alphanumeric characters. - maxLength: 63 + description: "ID should be a unique identifier for the workspace. + \n It can be up to 32 characters, consisting of lowercase alphanumeric + characters or '-', but it must both start and end with an alphanumeric + character." + maxLength: 32 minLength: 1 - pattern: '[A-Za-z0-9]*' + pattern: ^[a-z0-9]([a-z0-9-]*[a-z0-9])?$ type: string required: - id @@ -890,7 +892,7 @@ spec: - --leader-elect command: - /manager - image: signadot/workspaces-operator:v0.6.2 + image: signadot/workspaces-operator:v0.6.3 imagePullPolicy: IfNotPresent livenessProbe: httpGet: @@ -959,7 +961,7 @@ spec: secretKeyRef: key: token name: cluster-agent - image: signadot/workspaces-agent:v0.6.2 + image: signadot/workspaces-agent:v0.6.3 imagePullPolicy: IfNotPresent name: agent ports: From aea9df03c415f9721336da410a608d716a425dcb Mon Sep 17 00:00:00 2001 From: Anirudh Ramanathan Date: Fri, 20 Aug 2021 18:38:26 -0700 Subject: [PATCH 2/2] bump up chart / app versions --- signadot/workspaces/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/signadot/workspaces/Chart.yaml b/signadot/workspaces/Chart.yaml index 202262e..b826dea 100644 --- a/signadot/workspaces/Chart.yaml +++ b/signadot/workspaces/Chart.yaml @@ -6,10 +6,10 @@ 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.2.1 +version: 0.2.2 # 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. # It is recommended to use it with quotes. -appVersion: "0.6.2" +appVersion: "0.6.3"