-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from homeylab/bookstack-2.0.0-chart
improve bookstack chart, breaking changes to values.yaml file
- Loading branch information
Showing
10 changed files
with
143 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM quay.io/helmpack/chart-testing:v3.9.0 | ||
|
||
RUN apk update && \ | ||
apk add make | ||
|
||
RUN mkdir -p /root/.kube | ||
|
||
COPY kube_config /root/.kube/config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,15 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/debian | ||
{ | ||
// "name": "Debian", | ||
// // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
// "image": "mcr.microsoft.com/devcontainers/base:bookworm", | ||
// "features": { | ||
// "ghcr.io/mpriscella/features/helm-chart-testing:1": { | ||
// "version": "latest" | ||
// } | ||
// } | ||
"name": "CT", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "quay.io/helmpack/chart-testing:v3.9.0", | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
// "mounts": [ | ||
// "source=${localWorkspaceFolder}/.devcontainers,target=/root/.kube,type=bind,consistency=cached" | ||
// ] | ||
|
||
"postAttachCommand": { | ||
"update": ["apk", "update", "&&", "apk", "add", "--no-cache", "make"], | ||
"create_dir": ["mkdir", "-p", "/root/.kube"], | ||
"cp_config": ["cp", "${containerWorkspaceFolder}/.devcontainer/config", "/root/.kube/config"], | ||
"fix_perm": ["chmod", "0600", "/root/.kube/config"] | ||
} | ||
} | ||
|
||
// mounts following docker compose options | ||
// Use cached: when the host performs changes, the container is in read only mode. | ||
// Use delegated: when docker container performs changes, host is in read only mode. | ||
// Use default: When both container and host actively and continuously perform changes on data. | ||
|
||
// bind = on host | ||
// volume = create docker volume | ||
"build": { "dockerfile": "Dockerfile" }, | ||
"name": "CT", | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": ["streetsidesoftware.code-spell-checker"] | ||
} | ||
}, | ||
"runArgs": [ | ||
"--network=host" | ||
] | ||
|
||
// "forwardPorts": [3000] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.