Compare commits
7 Commits
6d9dfeded8
...
9b44b955da
Author | SHA1 | Date |
---|---|---|
Philippe Caseiro | 9b44b955da | |
Philippe Caseiro | d13e0d4d6a | |
Philippe Caseiro | cafe701488 | |
Philippe Caseiro | 373bd63306 | |
Philippe Caseiro | 9bd3205cec | |
Philippe Caseiro | 7f3ebb2a96 | |
Philippe Caseiro | f6223731ed |
|
@ -0,0 +1,3 @@
|
|||
[submodule "base/nginx-gateway"]
|
||||
path = base/nginx/nginx-gateway
|
||||
url = https://github.com/nginxinc/nginx-kubernetes-gateway.git
|
|
@ -3,3 +3,9 @@ kind: Kustomization
|
|||
|
||||
bases:
|
||||
- https://raw.githubusercontent.com/flannel-io/flannel/master/Documentation/kube-flannel.yml
|
||||
- https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml
|
||||
- ./postgresql
|
||||
- ./redis
|
||||
- ./metallb
|
||||
- ./minio
|
||||
- ./nginx
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
namespace: metallb-system
|
||||
|
||||
resources:
|
||||
- github.com/metallb/metallb/config/native?ref=v0.13.7
|
|
@ -0,0 +1,10 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: minio-operator
|
||||
commonAnnotations:
|
||||
operator.min.io/authors: "MinIO, Inc."
|
||||
operator.min.io/license: "AGPLv3"
|
||||
operator.min.io/support: "https://subnet.min.io"
|
||||
|
||||
resources:
|
||||
- github.com/minio/operator/resources
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
resources:
|
||||
- github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.1
|
||||
- ./nginx-gateway/deploy/manifests/namespace.yaml
|
||||
- ./nginx-gateway/deploy/manifests/gatewayclass.yaml
|
||||
- ./nginx-gateway/deploy/manifests/nginx-gateway.yaml
|
||||
- ./nginx-gateway/deploy/manifests/service/loadbalancer.yaml
|
||||
|
||||
configMapGenerator:
|
||||
- name: njs-modules
|
||||
files:
|
||||
- ./nginx-gateway/internal/nginx/modules/src/httpmatches.js
|
|
@ -0,0 +1 @@
|
|||
Subproject commit d0d604bf43d48e008558d5180f3a143c4fce9e61
|
|
@ -0,0 +1,10 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: postgresql-operator
|
||||
|
||||
resources:
|
||||
- namespace.yaml
|
||||
- github.com/zalando/postgres-operator/manifests
|
||||
- github.com/zalando/postgres-operator/ui/manifests
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: postgresql-operator
|
|
@ -0,0 +1,8 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: redis-operator
|
||||
|
||||
resources:
|
||||
- namespace.yaml
|
||||
- github.com/spotahome/redis-operator/manifests/kustomize/overlays/default
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: redis-operator
|
Loading…
Reference in New Issue