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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@ dist/
# Dev configuration associated with authentication
*/*/*/secret.yaml

gha-creds-*.json
gha-creds-*.json

deployment/chainloop/charts/
values.local.yaml
23 changes: 23 additions & 0 deletions deployment/chainloop/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
12 changes: 12 additions & 0 deletions deployment/chainloop/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 2.2.4
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.2.7
- name: vault
repository: https://helm.releases.hashicorp.com
version: 0.24.0
digest: sha256:1115e837f9f10727a71e94e1da5e048abe3266123b2c0819e45729e2f0159219
generated: "2023-04-12T12:23:34.711511918+02:00"
22 changes: 22 additions & 0 deletions deployment/chainloop/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: v2
name: chainloop
description: Chainloop is an open source software supply chain control plane, a single source of truth for artifacts plus a declarative attestation crafting process.

type: application
version: 0.1.0
appVersion: "v0.8.96"

dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 2.x.x
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.x.x
- condition: development
name: vault
repository: https://helm.releases.hashicorp.com
version: 0.24.x
329 changes: 329 additions & 0 deletions deployment/chainloop/README.md

Large diffs are not rendered by default.

47 changes: 47 additions & 0 deletions deployment/chainloop/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@

** Please be patient while the chart is being deployed **

{{- if .Values.development }}

###########################################################################
DEVELOPMENT MODE
###########################################################################

██████╗ ███████╗██╗ ██╗ █████╗ ██████╗ ███████╗
██╔══██╗██╔════╝██║ ██║██╔══██╗██╔══██╗██╔════╝
██████╔╝█████╗ ██║ █╗ ██║███████║██████╔╝█████╗
██╔══██╗██╔══╝ ██║███╗██║██╔══██║██╔══██╗██╔══╝
██████╔╝███████╗╚███╔███╔╝██║ ██║██║ ██║███████╗
╚═════╝ ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝

Instance running in development mode!

Development mode, by default

- Runs an insecure, unsealed, non-persistent instance of Vault
- Is configured with development authentication keys

DO NOT USE IT FOR PRODUCTION PURPOSES

###########################################################################
CONFIGURE CLI
###########################################################################

Configure the CLI to point to this instance, for example

chainloop --insecure config save \
--control-plane my-controlplane.acme.com:80 \
--artifact-cas cas.acme.com:80

Refer to this link for more information
https://docs.chainloop.dev/getting-started/installation#configure-cli-optional

###########################################################################
USEFUL LINKS
###########################################################################

- GitHub repository: https://github.com/chainloop-dev/chainloop
- Documentation: https://docs.chainloop.dev

{{- end }}

Loading