diff --git a/README.md b/README.md index 55c2d7a..7951a24 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,4 @@ The CI pipeline does the following: ### CD The CD pipeline deploys the kubernetes manifests of the `taxi` app to the `dev` environment. + diff --git a/deploy/templates/deployment.yaml b/deploy/templates/deployment.yaml index 8a5dcbd..64d3562 100644 --- a/deploy/templates/deployment.yaml +++ b/deploy/templates/deployment.yaml @@ -18,19 +18,19 @@ spec: app.kubernetes.io/version: 0.0.1 spec: containers: - - name: taxi - image: quay.io/shbose/taxi - imagePullPolicy: Always - volumeMounts: - - name: web-files - mountPath: /usr/share/booktaxi - ports: - - name: http - containerPort: 8080 - protocol: TCP + - name: taxi + image: quay.io/shbose/taxi + imagePullPolicy: Always + volumeMounts: + - name: web-files + mountPath: /usr/share/booktaxi + ports: + - name: http + containerPort: 8080 + protocol: TCP volumes: - - name: web-files - configMap: - name: www-files + - name: web-files + configMap: + name: www-files imagePullSecrets: - name: shbose-pull-secret diff --git a/src/web/index.html b/src/web/index.html index 83abb4a..ac22fd9 100644 --- a/src/web/index.html +++ b/src/web/index.html @@ -13,6 +13,7 @@

Book Taxi

This is the default page.

+

This is the default page. Testing for GITOPS-1307.