Skip to content

Commit 0b53c9b

Browse files
committed
start stubbing out team setup
1 parent acecd1b commit 0b53c9b

File tree

4 files changed

+31
-22
lines changed

4 files changed

+31
-22
lines changed

setup.RHOAI-v2.10/TEAM-SETUP.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Project Setup
1+
# Team Setup
22

3-
The project setup creates a project, a user group, a quota, a queue, and the
3+
4+
The team setup creates a project, a user group, a quota, a queue, and the
45
required role bindings.
56

67
Create project:
@@ -19,6 +20,7 @@ Bind cluster role to group in namespace:
1920
```sh
2021
oc adm policy add-role-to-group mlbatch-edit team1-edit-group --role-namespace="" --namespace team1
2122
```
23+
2224
Specify the intended quota for the namespace by creating a `ClusterQueue`:
2325
```sh
2426
oc apply -f- << EOF

setup.RHOAI-v2.11/TEAM-SETUP.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Project Setup
1+
# Team Setup
22

3-
The project setup creates a project, a user group, a quota, a queue, and the
3+
4+
The team setup creates a project, a user group, a quota, a queue, and the
45
required role bindings.
56

67
Create project:
@@ -19,6 +20,7 @@ Bind cluster role to group in namespace:
1920
```sh
2021
oc adm policy add-role-to-group mlbatch-edit team1-edit-group --role-namespace="" --namespace team1
2122
```
23+
2224
Specify the intended quota for the namespace by creating a `ClusterQueue`:
2325
```sh
2426
oc apply -f- << EOF

setup.k8s-v1.25/TEAM-SETUP.md

+7-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,15 @@
1-
# Project Setup
1+
# Team Setup
22

3-
The project setup creates a project, a user group, a quota, a queue, and the
3+
The team setup creates a namespace, a user group, a quota, a queue, and the
44
required role bindings.
55

6-
Create project:
6+
Create namespace:
77
```sh
8-
kubectl new-project team1
9-
```
10-
Create user group:
11-
```sh
12-
kubectl adm groups new team1-edit-group
13-
```
14-
Add users to group for example:
15-
```sh
16-
kubectl adm groups add-users team1-edit-group user1
17-
```
18-
Bind cluster role to group in namespace:
19-
```sh
20-
kubectl adm policy add-role-to-group mlbatch-edit team1-edit-group --role-namespace="" --namespace team1
8+
kubectl create namespace team1
219
```
10+
11+
*** UNDER CONSTRUCTION***
12+
2213
Specify the intended quota for the namespace by creating a `ClusterQueue`:
2314
```sh
2415
kubectl apply -f- << EOF

setup.tmpl/TEAM-SETUP.md.tmpl

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Project Setup
1+
# Team Setup
22

3-
The project setup creates a project, a user group, a quota, a queue, and the
3+
{{ if .OPENSHIFT }}
4+
The team setup creates a project, a user group, a quota, a queue, and the
45
required role bindings.
56

67
Create project:
@@ -19,6 +20,19 @@ Bind cluster role to group in namespace:
1920
```sh
2021
{{ .KUBECTL }} adm policy add-role-to-group mlbatch-edit team1-edit-group --role-namespace="" --namespace team1
2122
```
23+
{{- else -}}
24+
The team setup creates a namespace, a user group, a quota, a queue, and the
25+
required role bindings.
26+
27+
Create namespace:
28+
```sh
29+
{{ .KUBECTL }} create namespace team1
30+
```
31+
32+
*** UNDER CONSTRUCTION***
33+
34+
{{- end }}
35+
2236
Specify the intended quota for the namespace by creating a `ClusterQueue`:
2337
```sh
2438
{{ .KUBECTL }} apply -f- << EOF

0 commit comments

Comments
 (0)