Skip to content
Open
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
3 changes: 1 addition & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
fail-fast: false
matrix:
k8s-version:
- 'v1.31.0'
- 'v1.32.0'
- 'v1.33.0'
- 'v1.34.0'
- 'v1.35.0'
Comment thread
Svarrogh1337 marked this conversation as resolved.
runs-on:
labels: ubuntu-latest-8-cores
steps:
Expand All @@ -91,7 +91,6 @@ jobs:
fail-fast: false
matrix:
os-version: # https://quay.io/repository/minc-org/minc?tab=tags&tag=latest
- '4.18.0-okd-scos.9'
- '4.19.0-okd-scos.17'
runs-on: ubuntu-latest-8-cores
steps:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ release:
>
> | Kubernetes version | Minimum required |
> |--------------------|------------------|
> | `v1.35` | `>= 1.35.0` |
> | `v1.36` | `>= 1.36.0` |


Thanks to all the contributors! 🚀 🦄
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CAPSULE_IMG ?= $(REGISTRY)/$(IMG_BASE)
CLUSTER_NAME ?= capsule
FILTER ?= --label-filter="!skip"
## Kubernetes Version Support
KUBERNETES_SUPPORTED_VERSION ?= "v1.35.0"
KUBERNETES_SUPPORTED_VERSION ?= "v1.36.0"
Comment thread
Svarrogh1337 marked this conversation as resolved.

## Openshift Version Support
OS_SUPPORTED_VERSION ?= "4.22.0-okd-scos.ec.10"
Expand Down Expand Up @@ -95,6 +95,7 @@ helm-schema: helm-plugin-schema
helm-test: HELM_KIND_CONFIG ?= ""
helm-test: kind
@mkdir -p /tmp/results || true
@$(KIND) build node-image $(KUBERNETES_SUPPORTED_VERSION) --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION)
@$(KIND) create cluster --wait=60s --name capsule-charts --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION) --config ./hack/kind-cluster.yaml
Comment thread
Svarrogh1337 marked this conversation as resolved.
@make helm-test-exec
@$(KIND) delete cluster --name capsule-charts
Expand All @@ -108,6 +109,7 @@ helm-test-exec: ct helm-controller-version ko-build-all

# Setup development env
dev-build: kind
$(KIND) build node-image $(KUBERNETES_SUPPORTED_VERSION) --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION)
$(KIND) create cluster --wait=60s --name $(CLUSTER_NAME) --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION) --config ./hack/kind-cluster.yaml
Comment thread
Svarrogh1337 marked this conversation as resolved.
$(MAKE) dev-install-deps

Expand Down Expand Up @@ -441,6 +443,7 @@ trace-install:
.PHONY: trace-e2e
trace-e2e: kind
$(MAKE) docker-build-capsule-trace
$(KIND) build node-image $(KUBERNETES_SUPPORTED_VERSION) --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION)
Comment thread
Svarrogh1337 marked this conversation as resolved.
$(KIND) create cluster --wait=60s --image kindest/node:$(KUBERNETES_SUPPORTED_VERSION) --config hack/kind-cluster.yml
$(MAKE) e2e-load-image CLUSTER_NAME=capsule-tracing IMAGE=$(CAPSULE_IMG) VERSION=tracing
$(MAKE) trace-install
Expand Down
Loading