forked from kubevirt/cluster-network-addons-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-notes.tmpl
More file actions
39 lines (29 loc) · 1.14 KB
/
release-notes.tmpl
File metadata and controls
39 lines (29 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{{with .NotesWithActionRequired -}}
# Urgent Upgrade Notes
{{range .}} {{println "-" .}} {{end}}
{{end}}
{{- with .Notes -}}
# Changes
{{ range .}}
## {{.Kind | prettyKind}}
{{range $note := .NoteEntries}}
- {{$note}}
{{- end}}
{{end}}
{{- end}}
# Installation
First install the operator itself:
```bash
kubectl apply -f https://github.com/kubevirt/cluster-network-addons-operator/releases/download/{{ .CurrentRevision }}/namespace.yaml
kubectl apply -f https://github.com/kubevirt/cluster-network-addons-operator/releases/download/{{ .CurrentRevision }}/network-addons-config.crd.yaml
kubectl apply -f https://github.com/kubevirt/cluster-network-addons-operator/releases/download/{{ .CurrentRevision }}/operator.yaml
```
Then you need to create a configuration for the operator example CR:
```bash
kubectl apply -f https://github.com/kubevirt/cluster-network-addons-operator/releases/download/{{ .CurrentRevision }}/network-addons-config-example.cr.yaml
```
Finally you can wait for the operator to finish deployment:
```bash
kubectl wait networkaddonsconfig cluster --for condition=Available
```
{{- /* This removes any extra line at the end. */ -}}