Commit 8e886f95 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'feat/278-cnit-basic-flexgrid-lightpath-deployment' of...

Merge branch 'feat/278-cnit-basic-flexgrid-lightpath-deployment' of ssh://gifrerenom_labs.etsi.org/tfs/controller into feat/329-ecoc-2025-hack-your-research
parents 1c7a4380 787e7f5a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -48,7 +48,7 @@ MANIFEST
*.manifest
*.manifest
.manifest/
.manifest/
*.spec
*.spec

scripts/aa
# Installer logs
# Installer logs
pip-log.txt
pip-log.txt
pip-delete-this-directory.txt
pip-delete-this-directory.txt

aa

0 → 100644
+0 −0

Empty file added.

bb

0 → 100644
+0 −0

Empty file added.

certs.sh

0 → 100644
+3 −0
Original line number Original line Diff line number Diff line
sudo microk8s refresh-certs --cert ca.crt
sudo microk8s refresh-certs --cert front-proxy-client.crt
sudo microk8s refresh-certs --cert server.crt

delete_me/Dockerfile

0 → 100644
+16 −0
Original line number Original line Diff line number Diff line
# Use the official Ubuntu image from the Docker Hub
FROM ubuntu:latest

# Update and install any required packages

RUN  apt-get update


# Set the working directory
WORKDIR /app

# Copy any necessary files into the working directory
COPY . /app

# Specify the command to run when the container starts
CMD ["echo", "Hello, Docker!"]
Loading