32 lines
531 B
YAML
32 lines
531 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- pvc.yaml
|
|
- nginx.configmap.yaml
|
|
- nginx.deployment.yaml
|
|
- nginx.service.yaml
|
|
- nginx-auth.sealedsecret.yaml
|
|
# - nginx.ingress.yaml
|
|
- quartz-build.cronjob.yaml
|
|
- s3-credentials.sealedsecret.yaml
|
|
|
|
namespace: eth-physics
|
|
|
|
|
|
images:
|
|
- name: node
|
|
newName: node
|
|
newTag: 20-slim
|
|
|
|
- name: git
|
|
newName: alpine/git
|
|
newTag: latest
|
|
|
|
- name: s3
|
|
newName: public.ecr.aws/aws-cli/aws-cli
|
|
newTag: latest
|
|
|
|
|