mirror of https://github.com/helm/helm
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.
62 lines
1.4 KiB
62 lines
1.4 KiB
---
|
|
# Source: chart-with-template-lib-dep/templates/service.yaml
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: chart-with-template-lib-dep
|
|
chart: chart-with-template-lib-dep-0.1.0
|
|
heritage: Helm
|
|
release: release-name
|
|
name: release-name-chart-with-template-lib-dep
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: http
|
|
selector:
|
|
app: chart-with-template-lib-dep
|
|
release: release-name
|
|
type: ClusterIP
|
|
---
|
|
# Source: chart-with-template-lib-dep/templates/deployment.yaml
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: release-name-chart-with-template-lib-dep
|
|
labels:
|
|
app: chart-with-template-lib-dep
|
|
chart: chart-with-template-lib-dep-0.1.0
|
|
release: release-name
|
|
heritage: Helm
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: chart-with-template-lib-dep
|
|
release: release-name
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: chart-with-template-lib-dep
|
|
release: release-name
|
|
spec:
|
|
containers:
|
|
- name: chart-with-template-lib-dep
|
|
image: "nginx:stable"
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
resources:
|
|
{}
|