You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/pkg/cmd/testdata/output/template-chart-with-templat...

62 lines
1.5 KiB

---
# Source: chart-with-template-lib-archive-dep/templates/service.yaml
apiVersion: v1
kind: Service
metadata:
labels:
app: chart-with-template-lib-archive-dep
chart: chart-with-template-lib-archive-dep-0.1.0
heritage: Helm
release: release-name
name: release-name-chart-with-template-lib-archive-dep
spec:
ports:
- name: http
port: 80
targetPort: http
selector:
app: chart-with-template-lib-archive-dep
release: release-name
type: ClusterIP
---
# Source: chart-with-template-lib-archive-dep/templates/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: release-name-chart-with-template-lib-archive-dep
labels:
app: chart-with-template-lib-archive-dep
chart: chart-with-template-lib-archive-dep-0.1.0
release: release-name
heritage: Helm
spec:
replicas: 1
selector:
matchLabels:
app: chart-with-template-lib-archive-dep
release: release-name
template:
metadata:
labels:
app: chart-with-template-lib-archive-dep
release: release-name
spec:
containers:
- name: chart-with-template-lib-archive-dep
image: "nginx:stable"
imagePullPolicy: IfNotPresent
ports:
- name: http
containerPort: 80
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
resources:
{}