Skip to content

Commit 90e7ab7

Browse files
committed
Release v0.9.0
1 parent aac85fc commit 90e7ab7

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,22 @@ This repository contains a [deploy](deploy) folder which contains all of the man
1717

1818
If you would like to apply your own customizations, reference the `deploy` folder and the version in your `kustomization.yaml`.
1919

20-
#### Kustomize v2
20+
#### Kustomize v2
21+
2122
(version used in `kubectl apply -k .`)
2223

2324
```yaml
2425
bases:
25-
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.8.0
26+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
2627
```
2728
2829
#### Kustomize v3
30+
2931
Latest version of Kustomize if installed as a standalone. Also version embedded in flux.
3032
3133
```yaml
3234
resources:
33-
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.8.0
35+
- git::https://github.com/plexsystems/sandbox-operator.git//deploy?ref=v0.9.0
3436
```
3537
3638
The [example](example) folder shows one example of how to customize the operator.
@@ -100,15 +102,14 @@ If no credentials are provided, the operator will create the `Role` and `Cluster
100102

101103
### Docker Pull Secrets
102104

103-
By default, the operator will not create any secrets in the provisioned namespace.
105+
By default, the operator will not create any secrets in the provisioned namespace.
104106

105107
**If the `PULL_SECRET_NAME` environment variable is set, the operator will copy your clusters pull secret to the provisioned namespace and patch the default service account.**
106108

107109
`PULL_SECRET_NAME` should be the name of the pull secret that exists in your cluster. By default, the operator will look for your secret in the `default` namespace.
108110

109111
To have the operator look in a different namespace for the pull secret, use the `PULL_SECRET_NAMESPACE` environment variable.
110112

111-
112113
## Creating a Sandbox
113114

114115
To create a Sandbox, apply a Sandbox CRD to the target cluster.
@@ -145,7 +146,6 @@ Assuming the name of the created Sandbox is named `foo`, the following resources
145146
|---|---|---|---|
146147
|*|operators.plex.dev|sandboxes|sandbox-foo|
147148

148-
149149
This is created so that only users defined in the `owners` field can delete their Sandboxes.
150150

151151
### ClusterRoleBinding (sandbox-foo-admins)

bundle.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ kind: Deployment
170170
metadata:
171171
labels:
172172
app.kubernetes.io/name: sandbox-operator
173-
app.kubernetes.io/version: "0.8.0"
173+
app.kubernetes.io/version: v0.9.0
174174
name: sandbox-operator
175175
spec:
176176
selector:
@@ -195,7 +195,7 @@ spec:
195195
valueFrom:
196196
fieldRef:
197197
fieldPath: metadata.name
198-
image: plexsystems/sandbox-operator:v0.8.0
198+
image: plexsystems/sandbox-operator:v0.9.0
199199
imagePullPolicy: IfNotPresent
200200
name: sandbox-operator
201201
serviceAccountName: sandbox-operator-sa

deploy/deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: sandbox-operator
55
labels:
66
app.kubernetes.io/name: sandbox-operator
7-
app.kubernetes.io/version: "0.8.0"
7+
app.kubernetes.io/version: v0.9.0
88
spec:
99
selector:
1010
matchLabels:
@@ -17,7 +17,7 @@ spec:
1717
serviceAccountName: sandbox-operator-sa
1818
containers:
1919
- name: sandbox-operator
20-
image: plexsystems/sandbox-operator:v0.8.0
20+
image: plexsystems/sandbox-operator:v0.9.0
2121
command:
2222
- sandbox-operator
2323
imagePullPolicy: IfNotPresent

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var (
2626
metricsHost = "0.0.0.0"
2727
metricsPort int32 = 8383
2828
operatorMetricsPort int32 = 8686
29-
version = "0.8.0"
29+
version = "v0.9.0"
3030
)
3131

3232
func main() {

0 commit comments

Comments
 (0)