diff --git a/stable/kong/Chart.yaml b/stable/kong/Chart.yaml index 3f7d10c3cf..a0c8432c17 100644 --- a/stable/kong/Chart.yaml +++ b/stable/kong/Chart.yaml @@ -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 diff --git a/stable/kong/ci/test1-values.yaml b/stable/kong/ci/test1-values.yaml deleted file mode 100644 index c77ae442e4..0000000000 --- a/stable/kong/ci/test1-values.yaml +++ /dev/null @@ -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: / diff --git a/stable/kong/ci/test2-values.yaml b/stable/kong/ci/test2-values.yaml deleted file mode 100644 index 735588de68..0000000000 --- a/stable/kong/ci/test2-values.yaml +++ /dev/null @@ -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 diff --git a/stable/kong/ci/test3-values.yaml b/stable/kong/ci/test3-values.yaml deleted file mode 100644 index 3b4f58e63c..0000000000 --- a/stable/kong/ci/test3-values.yaml +++ /dev/null @@ -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