website: remove -beta prerelease tag from api-gateway CRD and image refs

pull/12423/head
Mike Morris 2022-02-22 11:23:22 -05:00
parent abfa349395
commit 305c78ccbc
1 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ Consul API Gateway implements the Kubernetes [Gateway API Specification](https:/
Your datacenter must meet the following requirements prior to configuring the Consul API Gateway: Your datacenter must meet the following requirements prior to configuring the Consul API Gateway:
- Kubernetes 1.21+ - Kubernetes 1.21+
- `kubectl` 1.21+ - `kubectl` 1.21+
- Consul 1.11.2+ - Consul 1.11.2+
- HashiCorp Consul Helm chart 0.40.0+ - HashiCorp Consul Helm chart 0.40.0+
@ -34,12 +34,12 @@ Your datacenter must meet the following requirements prior to configuring the Co
<CodeBlockConfig> <CodeBlockConfig>
```shell-session ```shell-session
$ kubectl apply --kustomize="github.com/hashicorp/consul-api-gateway/config/crd?ref=v0.1.0-beta" $ kubectl apply --kustomize="github.com/hashicorp/consul-api-gateway/config/crd?ref=v0.1.0"
``` ```
</CodeBlockConfig> </CodeBlockConfig>
1. Create a `values.yaml` file for your Consul API Gateway deployment. Copy the content below into the `values.yaml` file. The `values.yaml` will be used by the Consul Helm chart. See [Helm Chart Configuration - apigateway](https://www.consul.io/docs/k8s/helm#apigateway) for more available options on how to configure your Consul API Gateway deployment via the Helm chart. 1. Create a `values.yaml` file for your Consul API Gateway deployment. Copy the content below into the `values.yaml` file. The `values.yaml` will be used by the Consul Helm chart. See [Helm Chart Configuration - apigateway](https://www.consul.io/docs/k8s/helm#apigateway) for more available options on how to configure your Consul API Gateway deployment via the Helm chart.
<CodeBlockConfig hideClipboard filename="values.yaml"> <CodeBlockConfig hideClipboard filename="values.yaml">
@ -55,7 +55,7 @@ Your datacenter must meet the following requirements prior to configuring the Co
enabled: true enabled: true
apiGateway: apiGateway:
enabled: true enabled: true
image: hashicorp/consul-api-gateway:0.1.0-beta image: hashicorp/consul-api-gateway:0.1.0
``` ```
</CodeBlockConfig> </CodeBlockConfig>