---
# 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:
            {}
