Skip to content

Commit f6326e8

Browse files
authored
Release v1.15.0 (#5379)
Signed-off-by: Fabian von Feilitzsch <[email protected]>
1 parent 89f6d3d commit f6326e8

File tree

6 files changed

+26
-32
lines changed

6 files changed

+26
-32
lines changed

changelog/fragments/ansible-path-issue-temporary-fix.yaml

-5
This file was deleted.

changelog/fragments/bump-ansible-collections.yaml

-26
This file was deleted.

changelog/generated/v1.15.0.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## v1.15.0
2+
3+
### Changes
4+
5+
- Bumped community.kubernetes to kubernetes.core >= 2.2.0. Added the kubernetes.core collection to requirements. ([#5249](https://github.com/operator-framework/operator-sdk/pull/5249))
6+
7+
### Bug Fixes
8+
9+
- For Ansible operators, if an API endpoint has a "/" in server path component the ansible binary will no longer throw error. ([#5308](https://github.com/operator-framework/operator-sdk/pull/5308))

website/config.toml

+4
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ algolia_docsearch = true
9595

9696
##RELEASE_ADDME##
9797

98+
[[params.versions]]
99+
version = "v1.15"
100+
url = "https://v1-15-x.sdk.operatorframework.io"
101+
98102
[[params.versions]]
99103
version = "v1.14"
100104
url = "https://v1-14-x.sdk.operatorframework.io"

website/content/en/docs/installation/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export OS=$(uname | awk '{print tolower($0)}')
3636
Download the binary for your platform:
3737

3838
```sh
39-
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.14.0
39+
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.15.0
4040
curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH}
4141
```
4242

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: v1.15.0
3+
weight: 998985000
4+
---
5+
6+
## Update ansible collection ``community.kubernetes`` to ``kubernetes.core``
7+
8+
Add the ``kubernetes.core`` collection (>= 2.2.0) to the requrements.yml file
9+
- name: kubernetes.core
10+
version: "2.2.0"
11+
12+
_See [#5249](https://github.com/operator-framework/operator-sdk/pull/5249) for more details._

0 commit comments

Comments
 (0)