Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Stage v0.5.4 (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancoleman authored May 16, 2023
1 parent a7a2987 commit b9a06f9
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 13 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
## UNRELEASED
## 0.5.4 (May 16, 2023)

## 0.5.3 (March 29, 2022)
IMPROVEMENTS:

* go: build with Go v1.19.9 [[GH-570](https://github.com/hashicorp/consul-api-gateway/issues/570)]

BUG FIXES:

* add support for parsing SPIFFE paths for non-default partitions in Consul Enterprise [[GH-547](https://github.com/hashicorp/consul-api-gateway/issues/547)]

## 0.5.3 (March 29, 2023)

BUG FIXES:

* Fix envoy deployments not properly identifying themselves when deployed to non-default partitions. [[GH-537](https://github.com/hashicorp/consul-api-gateway/issues/537)]

## 0.5.2 (March 3, 2022)
## 0.5.2 (March 3, 2023)

IMPROVEMENTS:

Expand Down
2 changes: 1 addition & 1 deletion config/deployment/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
serviceAccountName: consul-api-gateway-controller
containers:
- image: hashicorp/consul-api-gateway:0.5.3
- image: hashicorp/consul-api-gateway:0.5.4
command: ["consul-api-gateway", "server", "-consul-address", "$(HOST_IP):8501", "-ca-file", "/ca/tls.crt", "-sds-server-host", "$(IP)", "-k8s-namespace", "$(CONSUL_K8S_NAMESPACE)", "-log-level", "$(LOG_LEVEL)"]
name: consul-api-gateway-controller
ports:
Expand Down
6 changes: 3 additions & 3 deletions dev/docs/example-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ We have provided a set of `kustomize` manifests for installing the Consul API Ga
Apply them to your cluster using the following commands.

```bash
kubectl apply -k "github.com/hashicorp/consul-api-gateway/config/crd?ref=v0.5.3"
kubectl apply -k "github.com/hashicorp/consul-api-gateway/config?ref=v0.5.3"
kubectl apply -k "github.com/hashicorp/consul-api-gateway/config/crd?ref=v0.5.4"
kubectl apply -k "github.com/hashicorp/consul-api-gateway/config?ref=v0.5.4"
```

## Installing the demo Gateway and Mesh Service
Expand Down Expand Up @@ -116,7 +116,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- github.com/hashicorp/consul-api-gateway/config/example?ref=v0.5.3
- github.com/hashicorp/consul-api-gateway/config/example?ref=v0.5.4
patches:
- target:
Expand Down
2 changes: 1 addition & 1 deletion dev/docs/supported-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Below is a list of the Kubernetes Gateway API features supported in the current release of the
Consul API Gateway.

Consul API Gateway version: **v0.5.3**
Consul API Gateway version: **v0.5.4**
Supported K8s Gateway API version: **v1beta1**

Supported features are marked with a grey checkbox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
- /bin/discover
- /bin/consul-api-gateway
- /bootstrap/
image: hashicorp/consul-api-gateway:0.5.3
image: hashicorp/consul-api-gateway:0.5.4
name: consul-api-gateway-init
resources: {}
volumeMounts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
- /bin/discover
- /bin/consul-api-gateway
- /bootstrap/
image: hashicorp/consul-api-gateway:0.5.3
image: hashicorp/consul-api-gateway:0.5.4
name: consul-api-gateway-init
resources: {}
volumeMounts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ spec:
- /bin/discover
- /bin/consul-api-gateway
- /bootstrap/
image: hashicorp/consul-api-gateway:0.5.3
image: hashicorp/consul-api-gateway:0.5.4
name: consul-api-gateway-init
resources: {}
volumeMounts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ spec:
- /bin/discover
- /bin/consul-api-gateway
- /bootstrap/
image: hashicorp/consul-api-gateway:0.5.3
image: hashicorp/consul-api-gateway:0.5.4
name: consul-api-gateway-init
resources: {}
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
//
// Version must conform to the format expected by
// github.com/hashicorp/go-version for tests to work.
Version = "0.5.3"
Version = "0.5.4"

// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
Expand Down

0 comments on commit b9a06f9

Please sign in to comment.