Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Kubernetes versions and documentation #225

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ blocks:
# E2E_K8S_VERSION_OPTION in tests/conftest.py; it should point to the most recent version used in CI.
- env_var: K8S_VERSION
values:
- v1.24.12
- v1.25.8
- v1.26.3
- v1.24.15
- v1.25.11
- v1.26.6
- v1.27.3
promotions:
- name: Push container image
pipeline_file: push-container-image.yml
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ To run fiaas-deploy-daemon locally and connect it to a local cluster, do the fol

With kind:
* (See https://kind.sigs.k8s.io/docs/user/quick-start/#installation for how to install and configure kind)
* Start kind: `$ kind create cluster --image kindest/node:v1.26.3`
* Start kind: `$ kind create cluster --image kindest/node:v1.27.3`
* Run `$ bin/run_fdd_against_kind`

With minikube:
Expand All @@ -82,7 +82,7 @@ If you need to test some behavior manually you can deploy applications into mini

#### Deploying an application via CustomResourceDefinition

In Kubernetes 1.7 and later you can deploy applications by creating a Application CustomResource
You can deploy applications by creating a Application CustomResource

```yaml
apiVersion: fiaas.schibsted.io/v1
Expand Down
2 changes: 1 addition & 1 deletion docs/platform_contract.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The [Operators guide](operator_guide.md) documents what cluster operators need t

## Supported kubernetes versions

We are currently testing Kubernetes version 1.9.0 and above. FIAAS may work on older versions, but is not tested.
We are currently testing Kubernetes version 1.24.12 and above. FIAAS may work on older versions, but is not tested.

## Notable kubernetes features in use

Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def pytest_addoption(parser):
parser.addoption(
E2E_K8S_VERSION_OPTION,
action="store",
default="v1.26.3",
default="v1.27.3",
help="Run e2e tests against a kind cluster using this Kubernetes version",
)

Expand Down