Skip to content

Commit c7bfe64

Browse files
authored
prepare v2.18.2 (#1667)
Signed-off-by: Jorge Turrado <[email protected]>
1 parent 6446fda commit c7bfe64

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

content/docs/2.18/deploy.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@ Once the KEDA YAML manifests are downloaded, apply the files to your cluster wit
135135

136136
```sh
137137
# Including admission webhooks
138-
kubectl apply --server-side -f https://github.com/kedacore/keda/releases/download/v2.18.0/keda-2.18.0.yaml
138+
kubectl apply --server-side -f https://github.com/kedacore/keda/releases/download/v2.18.2/keda-2.18.2.yaml
139139
# Without admission webhooks
140-
kubectl apply --server-side -f https://github.com/kedacore/keda/releases/download/v2.18.0/keda-2.18.0-core.yaml
140+
kubectl apply --server-side -f https://github.com/kedacore/keda/releases/download/v2.18.2/keda-2.18.2-core.yaml
141141
```
142142

143143
Alternatively you can download the file and deploy it from the local path:
144144

145145
```sh
146146
# Including admission webhooks
147-
kubectl apply --server-side -f keda-2.18.0.yaml
147+
kubectl apply --server-side -f keda-2.18.2.yaml
148148
# Without admission webhooks
149-
kubectl apply --server-side -f keda-2.18.0-core.yaml
149+
kubectl apply --server-side -f keda-2.18.2-core.yaml
150150
```
151151

152152
The `--server-side` flag allows Kubernetes to manage complex resources, like CRDs and admission webhooks, directly on the server. This approach reduces conflicts and ensures configurations are efficiently merged. For more information, see [this issue](https://github.com/kedacore/keda/issues/4740).
@@ -156,7 +156,7 @@ The `--server-side` flag allows Kubernetes to manage complex resources, like CRD
156156
> ```sh
157157
> git clone https://github.com/kedacore/keda && cd keda
158158
>
159-
> VERSION=2.18.0 make deploy
159+
> VERSION=2.18.2 make deploy
160160
> ```
161161
>
162162
> This approach gives you full access to KEDA’s configuration files, allowing you to explore, modify, or tailor the YAML manifests before deploying. Using make deploy with the specified version will install KEDA directly from your local setup, offering flexibility for customization.
@@ -175,24 +175,24 @@ If you installed KEDA using the released YAML files, you can uninstall it by run
175175

176176
```sh
177177
# Including admission webhooks
178-
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.18.0/keda-2.18.0.yaml
178+
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.18.2/keda-2.18.2.yaml
179179
# Without admission webhooks
180-
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.18.0/keda-2.18.0-core.yaml
180+
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.18.2/keda-2.18.2-core.yaml
181181
```
182182

183183
If you downloaded the files locally, uninstall with:
184184

185185
```sh
186186
# Including admission webhooks
187-
kubectl delete -f keda-2.18.0.yaml
187+
kubectl delete -f keda-2.18.2.yaml
188188
# Without admission webhooks
189-
kubectl delete -f keda-2.18.0-core.yaml
189+
kubectl delete -f keda-2.18.2-core.yaml
190190
```
191191

192192
For users who cloned the KEDA GitHub repository, navigate to the cloned directory and use:
193193

194194
```sh
195-
VERSION=2.18.0 make undeploy
195+
VERSION=2.18.2 make undeploy
196196
```
197197

198198
## Deploying KEDA on MicroK8s {#microk8s}

0 commit comments

Comments
 (0)