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

chore(main): release 0.7.2 #185

Merged
merged 2 commits into from
Nov 30, 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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.1"
".": "0.7.2"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.7.2](https://github.com/pl4nty/cloudflare-kubernetes-gateway/compare/v0.7.1...v0.7.2) (2024-11-30)


### Bug Fixes

* **deps:** update cloudflare/cloudflared docker tag to v2024.11.1 ([#179](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/179)) ([e97a123](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/e97a123d0835b01012dee11d90d366217b446391))
* **deps:** update kubernetes packages to v0.31.3 ([#183](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/183)) ([ad156a0](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/ad156a0a0392155c0a329400a55a367d7111443e))
* **deps:** update module github.com/onsi/ginkgo/v2 to v2.22.0 ([#182](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/182)) ([5e01641](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/5e016411190090fdbc636a495112796163484c38))
* **deps:** update module github.com/onsi/gomega to v1.36.0 ([#186](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/186)) ([88a289c](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/88a289c6447feb6dba2f410e609ff5398578c034))
* **deps:** update module sigs.k8s.io/controller-runtime to v0.19.2 ([#184](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/184)) ([ef166c9](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/ef166c9d06c6dec11f116ed349faa58128c5f831))
* **deps:** update module sigs.k8s.io/gateway-api to v1.2.1 ([#187](https://github.com/pl4nty/cloudflare-kubernetes-gateway/issues/187)) ([3cbf229](https://github.com/pl4nty/cloudflare-kubernetes-gateway/commit/3cbf229a79aea3ed4a93bd0842191cd7bd878b3e))

## [0.7.1](https://github.com/pl4nty/cloudflare-kubernetes-gateway/compare/v0.7.0...v0.7.1) (2024-11-18)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Manage Kubernetes ingress traffic with Cloudflare Tunnels via the [Gateway API](
## Getting Started

1. Install v1 or later of the Gateway API CRDs: `kubectl apply -k github.com/kubernetes-sigs/gateway-api//config/crd?ref=v1.0.0`
2. Install cloudflare-kubernetes-gateway: `kubectl apply -k github.com/pl4nty/cloudflare-kubernetes-gateway//config/default?ref=v0.7.1` <!-- x-release-please-version -->
2. Install cloudflare-kubernetes-gateway: `kubectl apply -k github.com/pl4nty/cloudflare-kubernetes-gateway//config/default?ref=v0.7.2` <!-- x-release-please-version -->
3. [Find your Cloudflare account ID](https://developers.cloudflare.com/fundamentals/setup/find-account-and-zone-ids/)
4. [Create a Cloudflare API token](https://developers.cloudflare.com/fundamentals/api/get-started/create-token/) with the Account Cloudflare Tunnel Edit and Zone DNS Edit permissions
5. Use them to create a Secret: `kubectl create secret -n cloudflare-gateway generic cloudflare --from-literal=ACCOUNT_ID=your-account-id --from-literal=TOKEN=your-token`
Expand Down Expand Up @@ -57,7 +57,7 @@ spec:
port: 80
```

8. (optional) Install Prometheus ServiceMonitors to collect controller and cloudflared metrics: `kubectl apply -k github.com/pl4nty/cloudflare-kubernetes-gateway//config/prometheus?ref=v0.7.1` <!-- x-release-please-version -->
8. (optional) Install Prometheus ServiceMonitors to collect controller and cloudflared metrics: `kubectl apply -k github.com/pl4nty/cloudflare-kubernetes-gateway//config/prometheus?ref=v0.7.2` <!-- x-release-please-version -->

## Features

Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: ghcr.io/pl4nty/cloudflare-kubernetes-gateway
newTag: v0.7.1 # x-release-please-version
newTag: v0.7.2 # x-release-please-version
Loading