[stable/kong] mark the chart as deprecated (#21940)

* [stable/kong] mark the chart as deprecated

Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>

* remove tetsts

Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
This commit is contained in:
Harry
2020-05-09 06:11:51 -07:00
committed by GitHub
parent 383b983d65
commit 3c95be709f
4 changed files with 3 additions and 99 deletions
+3 -6
View File
@@ -3,12 +3,9 @@ description: DEPRECATED The Cloud-Native Ingress and API-management
engine: gotpl
home: https://konghq.com/
icon: https://s3.amazonaws.com/downloads.kong/universe/assets/icon-kong-inc-large.png
maintainers:
- name: shashiranjan84
email: shashi@konghq.com
- name: hbagdi
email: harry@konghq.com
deprecated: true
maintainers: []
name: kong
sources:
version: 0.36.6
version: 0.36.7
appVersion: 1.4
-28
View File
@@ -1,28 +0,0 @@
# This tests the following unrealted aspects of Ingress Controller
# - ingressController deploys without a database (default)
ingressController:
enabled: true
# - webhook is enabled and deploys
admissionWebhook:
enabled: true
# - environment variables can be injected into ingress controller container
env:
kong_admin_header: "foo:bar"
# - podSecurityPolicies are enabled
podSecurityPolicy:
enabled: true
# - ingress resources are created with hosts
admin:
type: NodePort
ingress:
enabled: true
hosts: ["test.com", "test2.com"]
annotations: {}
path: /
proxy:
type: NodePort
ingress:
enabled: true
hosts: ["test.com", "test2.com"]
annotations: {}
path: /
-37
View File
@@ -1,37 +0,0 @@
# This tests the following unrealted aspects of Ingress Controller
# - ingressController deploys with a database
ingressController:
enabled: true
postgresql:
enabled: true
postgresqlUsername: kong
postgresqlDatabase: kong
service:
port: 5432
env:
database: "postgres"
# - ingress resources are created without hosts
admin:
type: NodePort
ingress:
enabled: true
hosts: []
path: /
proxy:
type: NodePort
ingress:
enabled: true
hosts: []
annotations: {}
path: /
useTLS: true
# - PDB is enabled
podDisruptionBudget:
enabled: true
# update strategy
updateStrategy:
type: "RollingUpdate"
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
-28
View File
@@ -1,28 +0,0 @@
# CI test for testing dbless deployment without ingress controllers
# - disable ingress controller
ingressController:
enabled: false
# - disable DB for kong
env:
database: "off"
postgresql:
enabled: false
# - supply DBless config for kong
dblessConfig:
# Or the configuration is passed in full-text below
config:
_format_version: "1.1"
services:
- name: test-svc
url: http://example.com
routes:
- name: test
paths:
- /test
plugins:
- name: request-termination
config:
status_code: 200
message: "dbless-config"
proxy:
type: NodePort