|
||
---|---|---|
data | ||
helm | ||
.gitignore | ||
README.md | ||
README_es.md | ||
build.sh | ||
run.sh |
README.md
Using run.sh
The run.sh
script automates the deployment process for a k8s
environment using minikube
. It includes building docker
images, customizing postgres
versions, enabling SSL
, and configuring replicas for the API.
Requirements
Usage
./run.sh -i # Interactive mode
./run.sh -p <version> -s <Y|N> -r <number> # Non-interactive mode
./run.sh -p <version> -s <Y|N> -r <number> -f # Non-interactive mode with Fluentd enabled
Command Line Options
- -i: Interactive mode
- -p : Specify the
postgres
version - -s <Y|N>: Enable or disable
SSL
(Y for yes, N for no) - -r : Specify the number of replicas for the API
- -f: Enable
fluentd
for log aggregation - -u: Uninstall the chart
- -d: Add basic data to the DB
Examples
Changing postgres version
If you want to modify the database version, you can simply do:
./run.sh -p 13.1
This will update everything necessary for this change.
Specifying number of replicas for the API
./run.sh -r 6
Script Functionality
-
Minikube Status Check:
The script checks if
minikube
is already running and starts it if it's not. -
Postgres Version and Build:
It prompts the user for the postgres version, builds
docker
images, and updates the version in thehelm
values file. -
TLS Configuration:
It asks the user if they want to enable
TLS
and updates thehelm
values file accordingly. -
Configuring Replicas for the API:
It prompts the user for the number of replicas for the API and updates the
helm
values file. -
Ingress Configuration:
It enables the ingress extension if
minikube
is running. -
Fluentd Configuration (Optional):
The user is asked whether to enable
fluentd
for log aggregation. This can be toggled directly in thevalues.yaml
file. It's worth noting that, to maintain simplicity and avoid "bloat" invalues.yaml
, an additional file namedfluentd.yaml
is provided. This file should be passed as a parameter-f
tohelm
to configurefluentd
with necessary parameters. It's optional, asFluentd
can function without these configurations, but it's recommended due to performing some container startup conditions to wait for thefluentd
service and to collect only logs fromexam-*
containers (not all logs fromk8s
).The following instruction is used when installing or upgrading
helm
:helm install exam ./helm -n exam -f helm/values.yaml -f helm/fluentd.yaml
To view logs from
exam-*
containers, you can use:kubectl logs -n exam exam-fluentd-0
To configure and send logs to a log backend like
elasticsearch
, you can editfluentd.yaml
as per your requirements. -
Secrets Configuration (Optional):
To avoid keeping secrets in the SVC (if one is used), they can be passed to
helm
via asecrets.yaml
file with the-f
option. If./helm/secrets.yaml
exists (in the./helm
folder, i.e., in the same location asvalues.yaml
), these values will be used; otherwise, those defined invalues.yaml
will be used. These values will override existing ones.It's worth noting that upon creating
./helm/secrets.yaml
, therun.sh
script will automatically detect and use it when runninghelm
. Therefore, no additional actions are required, as the script will handle the detection and passing of this file tohelm
.