Skip to content

Commit 6ee227c

Browse files
committed
fix: refs
1 parent bca8889 commit 6ee227c

File tree

6 files changed

+36
-8
lines changed

6 files changed

+36
-8
lines changed

.wordlist-md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ CLI
1414
config
1515
CPUs
1616
CReferenceEvaluator
17+
csi
1718
CUDA
1819
curation
1920
cvbrowser
@@ -35,6 +36,7 @@ github
3536
gitops
3637
GitOps
3738
gmail
39+
gpu
3840
GPUs
3941
heartexlabs
4042
Heli
@@ -80,9 +82,12 @@ NFD
8082
NLP
8183
nodeFeatureDiscovery
8284
NONINFRINGEMENT
85+
NoSchedule
86+
nvidia
8387
Nvidia
8488
oc
8589
OCP
90+
ocs
8691
ODF
8792
onnx
8893
openshift
@@ -110,13 +115,16 @@ runthrough
110115
sdk
111116
sheppard
112117
Stienstra
118+
storagecluster
113119
sublicense
114120
svc
115121
Takhteyev
116122
tekton
117123
Tekton
118124
tkn
125+
tmp
119126
TODO
127+
tolerations
120128
traefik
121129
txt
122130
ubi

docs/NOTES.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,23 @@ pass: password1
3131
yolo-api-source-ubi \
3232
--patch '[{"op": "add", "path": "/spec/source/git/ref", "value": "gitops-catalog" }]' --type=json
3333
```
34+
35+
Run csi plugins on GPU nodes
36+
37+
```sh
38+
cat << YAML > /tmp/patch.yaml
39+
spec:
40+
placement:
41+
csi-plugin:
42+
tolerations:
43+
- key: nvidia.com/gpu
44+
operator: Exists
45+
effect: NoSchedule
46+
YAML
47+
48+
oc -n openshift-storage \
49+
patch storagecluster \
50+
ocs-storagecluster \
51+
--type=merge \
52+
--patch "$(cat /tmp/patch.yaml)"
53+
```

gitops/00-cluster-config/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33

44
resources:
5-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/demos/components/clusters/default?ref=v0.18
5+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/demos/components/clusters/default?ref=v0.19
66
- link-github.yaml

gitops/00-operators/kustomization.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33

44
resources:
5-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/devspaces/operator/overlays/stable?ref=v0.18
6-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/gpu-operator-certified/operator/overlays/stable?ref=v0.18
7-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/nfd/operator/overlays/stable?ref=v0.18
8-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/openshift-pipelines-operator-rh/operator/overlays/pipelines-1.14?ref=v0.05
5+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/devspaces/operator/overlays/stable?ref=v0.19
6+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/gpu-operator-certified/operator/overlays/stable?ref=v0.19
7+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/nfd/operator/overlays/stable?ref=v0.19
8+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/openshift-pipelines-operator-rh/operator/overlays/pipelines-1.20?ref=v0.19

gitops/01-operator-configs/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ kind: Kustomization
33

44
resources:
55
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/devspaces/instance/overlays/timeout-12m?ref=v0.05
6-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/gpu-operator-certified/instance/overlays/time-sliced?ref=v0.18
7-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/nfd/instance/overlays/default?ref=v0.18
6+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/gpu-operator-certified/instance/overlays/time-sliced?ref=v0.19
7+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/operators/nfd/instance/overlays/default?ref=v0.19

workshop/base/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33

44
resources:
5-
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/cluster-configs/login/overlays/htpasswd?ref=v0.18
5+
- https://github.com/redhat-na-ssa/demo-ai-gitops-catalog/components/cluster-configs/login/overlays/htpasswd?ref=v0.19
66
- htpasswd-secret.yaml
77

88
patches:

0 commit comments

Comments
 (0)