Skip to content

Commit

Permalink
Merge pull request #3 from signadot/prepare-for-v0.6.3
Browse files Browse the repository at this point in the history
prepare for v0.6.3
  • Loading branch information
foxish authored Aug 21, 2021
2 parents c41c3bc + aea9df0 commit 79af09d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions signadot/workspaces/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
14 changes: 8 additions & 6 deletions signadot/workspaces/templates/agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 79af09d

Please sign in to comment.