42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: portfolio
|
|
|
|
resources:
|
|
- serviceaccount.yaml
|
|
- resourcequota.yaml
|
|
- limitrange.yaml
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- ingress.yaml
|
|
- networkpolicy.yaml
|
|
- poddisruptionbudget.yaml
|
|
|
|
configMapGenerator:
|
|
- name: portfolio-site
|
|
files:
|
|
- index.html=site/index.html
|
|
- resume.html=site/resume.html
|
|
- kubernetes.html=site/kubernetes.html
|
|
- microsoft.html=site/microsoft.html
|
|
- automation.html=site/automation.html
|
|
- observability.html=site/observability.html
|
|
- styles.css=site/styles.css
|
|
- architecture.svg=site/architecture.svg
|
|
- favicon.svg=site/favicon.svg
|
|
- robots.txt=site/robots.txt
|
|
- security.txt=site/security.txt
|
|
- 404.html=site/404.html
|
|
- sitemap.xml=site/sitemap.xml
|
|
- Jay-Phillips-Infrastructure-Resume.pdf=site/Jay-Phillips-Infrastructure-Resume.pdf
|
|
- social-card.png=site/social-card.png
|
|
- name: portfolio-nginx
|
|
files:
|
|
- default.conf=nginx/default.conf
|
|
|
|
generatorOptions:
|
|
labels:
|
|
app.kubernetes.io/name: portfolio
|
|
app.kubernetes.io/part-of: portfolio-platform
|