Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9507b15
microservice container cap add , drop , annotations added, new rebuil…
emirhandurmus Apr 9, 2025
3e3b73a
ecn-viewer version updated
emirhandurmus Apr 9, 2025
6cba95c
logrotate and mscv rebuild endpoint fixed
emirhandurmus Apr 10, 2025
d3c2016
agent static accestoken replaced with ed25519 keypair and jwt. new co…
emirhandurmus Apr 22, 2025
5e59575
yaml parses updated with microservice container annotations, capadd, …
emirhandurmus Apr 24, 2025
58ba9cd
viewer version updated
emirhandurmus Apr 24, 2025
91316a4
new secret and certificate endpoints added, router mtls by default, b…
emirhandurmus May 16, 2025
2ccb64e
secret, certificate, volumemount, configmap endpoints and logic added…
emirhandurmus Jun 3, 2025
05ffaa6
websocket api server for exec session. ws message forward between use…
emirhandurmus Jun 19, 2025
92f0c52
ws kc auth roles checking fixed
emirhandurmus Jun 21, 2025
2cd88ff
fix
emirhandurmus Jun 21, 2025
468eb6c
beta release preparation, swagger yaml updated, db ssl config added, …
emirhandurmus Jul 3, 2025
2a24555
veiwer version updated, node's router secrets deletion added to node …
emirhandurmus Jul 5, 2025
e184a58
viewer version updated and gpsstatus added to fog data model
emirhandurmus Jul 6, 2025
bf18ab6
microservice yaml parser fixed, secret update schema fixed
emirhandurmus Jul 9, 2025
3822caa
microservice healchecki cpuSetCpus, momoryLimit configuration and hea…
emirhandurmus Jul 12, 2025
e0b3207
viewer version updated
emirhandurmus Jul 12, 2025
0a8b866
healthcheck datatypes fixed
emirhandurmus Jul 13, 2025
f258223
k8s create/update/delete servis logic updated, ecn-veiwer version upg…
emirhandurmus Jul 16, 2025
d256540
viewer version upgraded
emirhandurmus Jul 16, 2025
19e969a
k8s update service logic fixed
emirhandurmus Jul 16, 2025
5834cb2
viewer version updated
emirhandurmus Jul 16, 2025
01fe4be
k8s service update fixed
emirhandurmus Jul 16, 2025
e54f9e0
new volume mount linked nodes endpoint added, secret types fixed, vie…
emirhandurmus Jul 19, 2025
dc6cba7
release prep & viewer version upgraded
emirhandurmus Jul 21, 2025
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
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ node_modules
/src/config/*-config.json
.DS_Store
iofogcontroller-*.tgz
iofog-iofogcontroller-*.tgz
iofog-iofogcontroller-*.tgz
.env
src/iofog-controller.pid
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ node_modules
iofogcontroller-*.tgz
diagnostic/
iofog-iofogcontroller-*.tgz
.npmrc
.npmrc
.env
src/iofog-controller.pid
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:latest

USER root
# Install dependencies for logging and development
RUN microdnf install -y logrotate g++ make && microdnf clean all

COPY logrotate.conf /etc/logrotate.d/iofog-controller
RUN microdnf install -y g++ make && microdnf clean all

# Install Python and pip
RUN microdnf install -y python3 && \
Expand All @@ -38,7 +36,7 @@ RUN microdnf install -y python3 && \
pip3 install --no-cache --upgrade pip setuptools && \
microdnf install shadow-utils && \
microdnf clean all
RUN microdnf reinstall -y tzdata && microdnf clean all
RUN microdnf install -y tzdata && microdnf clean all
RUN microdnf -y remove microdnf
RUN useradd --uid 10000 --create-home runner
RUN mkdir -p /var/log/iofog-controller && \
Expand Down
Loading
Loading