Skip to content

Commit 54ff0c9

Browse files
committed
stuff
1 parent 8868b34 commit 54ff0c9

115 files changed

Lines changed: 58 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/apisix/kustomization.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
4+
resources:
5+
- namespace.yaml
6+
7+
helmCharts:
8+
- name: apisix
9+
repo: https://charts.apiseven.com
10+
version: 1.x.x
11+
releaseName: apisix
12+
includeCRDs: true
13+
valuesInline:
14+
dashboard:
15+
enabled: true
16+
ingress-controller:
17+
enabled: true
18+
19+
commonLabels:
20+
app.kubernetes.io/managed-by: kustomize
21+
22+
namespace: MUST_BE_SET

apps/apisix/namespace.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: MUST_BE_SET
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
4+
resources:
5+
- ../../base
6+
7+
namespace: testing-apisix
8+
9+
patches:
10+
- path: namespace-patch.yaml
11+
12+
helmCharts:
13+
- name: apisix
14+
repo: https://charts.apiseven.com
15+
version: 1.x.x
16+
releaseName: apisix
17+
includeCRDs: true
18+
valuesInline:
19+
ingress-controller:
20+
config:
21+
apisix:
22+
serviceNamespace: testing-apisix
23+
global:
24+
namespace: testing-apisix
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: testing-apisix
5+
labels:
6+
environment: testing
7+
app.kubernetes.io/name: apisix
8+
app.kubernetes.io/instance: testing

0 commit comments

Comments
 (0)