Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions private-path-to-vpc-vsi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ In order to connect to the VSI via ssh, you can specify the name of an VPC SSH k
```
VPC_SSH_KEY=<name-of-ssh-key> DEBUG=true CLEANUP_ON_SUCCESS=false ./run
```

## Noteworthy

Connecting a Private Path service with a Code Engine project opens up a wide variety of integration scenarios, including connecting to on-premise infrastructure.

![](./docs/code-engine-private-path---component-diagram.all-integrations.png)
4 changes: 2 additions & 2 deletions private-path-to-vpc-vsi/ce-job/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/nodejs-22:latest AS build-env
FROM registry.access.redhat.com/ubi9/nodejs-24:latest AS build-env
WORKDIR /job

# Define which files should be copied into the container image
Expand All @@ -8,7 +8,7 @@ COPY --chown=default:root *.mjs *.json .
RUN npm install

# Use a small distroless image for as runtime image
FROM gcr.io/distroless/nodejs22
FROM gcr.io/distroless/nodejs24
COPY --from=build-env /job /job
WORKDIR /job
CMD ["job.mjs"]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading