Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker plain helm chart #1035

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
429158a
feat: add initial draft for helm chart (docker-plain)
segfault16 May 6, 2024
a8df74d
test: docker-plain chart test use AWS ECR busybox
gerardcl May 10, 2024
55df77c
test: update docker-plain golden tests with helm integration
gerardcl May 10, 2024
abcd6c1
feat: docker-plain remove provisioning resources creation
gerardcl May 10, 2024
8be1e7a
drop: comment on docker-plain chart name
gerardcl May 10, 2024
5fb6f7e
feat: prepare Chart.yaml for templating the componend_id
segfault16 Jul 17, 2024
3dc157b
fix: remove custom app label, prefer the labels suggested by kubernetes
segfault16 Jul 17, 2024
ed3b160
fix: remove componentId since this should be covered by the helm char…
segfault16 Jul 17, 2024
f83dba3
feat: update image section
segfault16 Jul 17, 2024
1d7229d
update devnotes
segfault16 Jul 17, 2024
543e5e2
fix TODO note regarding image Values values.yaml
gerardcl Jul 17, 2024
e48a729
feat: docker-plain ingress with default tls templating, fix imagetag …
gerardcl Jul 17, 2024
3c9e765
fix: align tabs on ingress.yaml and update devnotes todo
gerardcl Jul 17, 2024
0658683
feat: docker-plain render Helm chart Chart.yaml file
gerardcl Jul 18, 2024
0b541a8
update devnotes, remove dependencies in Chart.yml for now
segfault16 Aug 2, 2024
d6d7121
Merge branch 'master' into docker-plain-helm-chart
segfault16 Aug 2, 2024
b97f813
update changelog
segfault16 Aug 2, 2024
8b87c2c
enable chart testing and enable deploymentStrategy to be set via valu…
gerardcl Aug 21, 2024
b2452c0
avoid dependency on Jenkins lib only provided image values - enable c…
gerardcl Aug 21, 2024
6148c67
fix: add missing tpl for serviceAccount
segfault16 Aug 27, 2024
2b4a064
fix no property error
BraisVQ Sep 5, 2024
9b6e866
fix
BraisVQ Sep 5, 2024
37271df
skip SA creation on default, use chart fullname
segfault16 Sep 5, 2024
b64fd82
Change to nginxinc image
BraisVQ Sep 5, 2024
4b74140
Merge branch 'master' into docker-plain-helm-chart
BraisVQ Sep 5, 2024
6cd786f
Specify selector for Release manager pipeline
BraisVQ Sep 6, 2024
1d9ff9c
Remove value
segfault16 Sep 10, 2024
865c738
use nginx image from redhat
segfault16 Sep 17, 2024
be71448
move image name logic to _image.tpl, make registry optional
segfault16 Sep 17, 2024
f445e25
Update readme, switch to ImagePullStrategy: IfNotPresent
segfault16 Sep 17, 2024
00ceccd
Provide initial values files for environments
segfault16 Sep 17, 2024
4485450
more strict schema
segfault16 Sep 19, 2024
818e13f
update image
segfault16 Sep 20, 2024
6bf18ed
docker-plain add helm lint and helm template processing howto info in…
gerardcl Sep 20, 2024
11871d4
Update OS package by default
BraisVQ Sep 23, 2024
a4c338a
docker-plain: add HorizontalPodAutoscaler
faust2199 Nov 27, 2024
e3e6552
docker-plain: use nginx/nginx-unprivileged
faust2199 Nov 28, 2024
167397b
docker-plain: add simpleHost to chart/values.yaml
faust2199 Nov 28, 2024
fe5fa7f
docker-plain: allow additionalProperties; make use of .Values.service…
faust2199 Nov 28, 2024
6c58ed7
Revert "docker-plain: add simpleHost to chart/values.yaml"
faust2199 Nov 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions docker-plain/files/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# add /overwrite FROM with your base image, and do whatever you like here :)
FROM nginxinc/nginx-unprivileged:latest
FROM registry.access.redhat.com/ubi9/nginx-122
segfault16 marked this conversation as resolved.
Show resolved Hide resolved

USER root
RUN echo -n "Hello World" > index.html

RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get clean

USER 1001
# Run script uses standard ways to run the application
CMD nginx -g "daemon off;"