diff --git a/apps/guestbook/Chart.yaml b/apps/guestbook/Chart.yaml deleted file mode 100644 index ce9cff4..0000000 --- a/apps/guestbook/Chart.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: guestbook-ui -spec: - replicas: 1 - revisionHistoryLimit: 3 - selector: - matchLabels: - app: guestbook-ui - template: - metadata: - labels: - app: guestbook-ui - spec: - containers: - - image: gcr.io/heptio-images/ks-guestbook-demo:0.2 - name: guestbook-ui - ports: - - containerPort: 80 \ No newline at end of file diff --git a/apps/guestbook/guestbook-ui-deployment.yaml b/apps/guestbook/guestbook-ui-deployment.yaml new file mode 100644 index 0000000..ce9cff4 --- /dev/null +++ b/apps/guestbook/guestbook-ui-deployment.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: guestbook-ui +spec: + replicas: 1 + revisionHistoryLimit: 3 + selector: + matchLabels: + app: guestbook-ui + template: + metadata: + labels: + app: guestbook-ui + spec: + containers: + - image: gcr.io/heptio-images/ks-guestbook-demo:0.2 + name: guestbook-ui + ports: + - containerPort: 80 \ No newline at end of file diff --git a/apps/guestbook/guestbook-ui-svc.yaml b/apps/guestbook/guestbook-ui-svc.yaml new file mode 100644 index 0000000..8807bcf --- /dev/null +++ b/apps/guestbook/guestbook-ui-svc.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: guestbook-ui +spec: + ports: + - port: 80 + targetPort: 80 + selector: + app: guestbook-ui \ No newline at end of file diff --git a/apps/guestbook/values.yaml b/apps/guestbook/values.yaml deleted file mode 100644 index 39f8dcf..0000000 --- a/apps/guestbook/values.yaml +++ /dev/null @@ -1,41 +0,0 @@ -replicaCount: 1 - -image: - repository: gcr.io/heptio-images/ks-guestbook-demo - tag: 0.1 - pullPolicy: IfNotPresent - -service: - type: NodePort - port: 8081 - -ingress: - enabled: false - annotations: {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" - path: / - hosts: - - chart-example.local - tls: [] - # - secretName: chart-example-tls - # hosts: - # - chart-example.local - -resources: {} - # We usually recommend not to specify default resources and to leave this as a conscious - # choice for the user. This also increases chances charts run on environments with little - # resources, such as Minikube. If you do want to specify resources, uncomment the following - # lines, adjust them as necessary, and remove the curly braces after 'resources:'. - # limits: - # cpu: 100m - # memory: 128Mi - # requests: - # cpu: 100m - # memory: 128Mi - -nodeSelector: {} - -tolerations: [] - -affinity: {} \ No newline at end of file