In this lab we will look through the Dockerfile and Kubernetes configuration files, as well as the health check that will be used on the pods.
A few lines of note:
-
We set the application's port:
ENV PORT 3000
-
We build the backend of the application:
RUN bundle install
-
We build the frontend of the application:
RUN yarn upgrade webpack@^4.0.0 && bundle exec rake assets:precompile
- We start the Puma server at the end:
CMD ["bundle", "exec", "puma", "-C", "config/puma.rb"]
- We select the type of resource:
kind: "Deployment"
- We specify the name of the app:
name: "link-app"
- We specify the container image:
image: link-container
- Because the image will be local, we add
imagePullPolicy: Never
- We configure the requested resources in the
resources
section. - We provide values for environment variables:
env:
- name: "DATABASE_URL"
value: "postgresql://[email protected]:5432/link"
- name: "REDIS_URL"
value: "redis://172.16.100.20:6379/15"
- We select type of resource:
kind: "Service"
- We specify the name of the app:
name: "link-app"
- We specify the port mapping for incoming requests:
port: 3000
targetPort: 3000
nodePort: 30000
This file is very similar to the app deployment yaml. It includes this section to indicate what app deploymenty it is connected to:
selector:
matchLabels:
app: "link-app"
You can find the health check under lib/health_check.rb
. It has been
implemented as rack middleware for the purposes of this workshop. You can find
the health check configured under each different environment in
config/environments
.