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: remove (deprecate) all manifests from deploy/single #4970

Merged
merged 1 commit into from
Oct 25, 2023
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
**/zz_generated*.go linguist-generated=true
pkg/clientset/** linguist-generated=true
deploy/single/** linguist-generated=true
test/e2e/manifests/** linguist-generated=true
docs/api-reference.md linguist-generated=true
internal/dataplane/parser/testdata/golden/**/*_golden.yaml linguist-generated=true
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,9 @@ Adding a new version? You'll need three changes:
- `deploy/single/all-in-one-dbless-legacy.yaml` manifest is removed.
It was already deprecated in 2.9
[#4866](https://github.com/Kong/kubernetes-ingress-controller/pull/4866)
- `deploy/single/all-in-one-dbless-enterprise.yaml` manifest is removed.
It's nearly identical to `deploy/single/all-in-one-dbless-k4k8s-enterprise.yaml`
which is used in the official docs.
[#4873](https://github.com/Kong/kubernetes-ingress-controller/pull/4873)
- All manifests from `deploy/single` are no longer supported as installation
method and were removed, please use Helm chart or Kong Gateway Operator instead.
[#4866](https://github.com/Kong/kubernetes-ingress-controller/pull/4866), [#4873](https://github.com/Kong/kubernetes-ingress-controller/pull/4873), [#4970](https://github.com/Kong/kubernetes-ingress-controller/pull/4970),
- Credentials now use a `konghq.com/credential` label to indicate
credential type instead of the `kongCredType` field. This allows controller
compontents to avoid caching unnecessary Secrets. The `kongCredType` field is
Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,11 @@ a hosted Kubernetes service like [GKE](https://cloud.google.com/kubernetes-engin
Setting up Kong for Kubernetes is as simple as:

```shell
# using YAMLs
$ kubectl apply -f https://raw.githubusercontent.com/Kong/kubernetes-ingress-controller/latest/deploy/single/all-in-one-dbless.yaml
# Using Helm
helm repo add kong https://charts.konghq.com
helm repo update

# or using Helm
$ helm repo add kong https://charts.konghq.com
$ helm repo update

# Helm 3
$ helm install kong/kong --generate-name --set ingressController.installCRDs=false
helm install kong/kong --generate-name --set ingressController.installCRDs=false
```

Once installed, please follow the [Getting Started guide][docs-konghq-getting-started-guide]
Expand Down
Loading