Skip to content

Commit

Permalink
Add pebble chart
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Apr 2, 2024
1 parent 1defb7b commit b619ca6
Show file tree
Hide file tree
Showing 8 changed files with 100 additions and 0 deletions.
Empty file added etc/pebble-acme/values.yaml
Empty file.
21 changes: 21 additions & 0 deletions helmfile.d/100-pebble-acme.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
bases:
- ../environments.yaml

---

{{ readFile "../etc/helmfile-templates.yaml" }}

releases:
- name: pebble-acme
namespace: cert-manager
chart: pebble-acme/pebble
version: {{ .Values.pebble_acme._chart_version }}
installed: {{ .Values.pebble_acme._install }}
timeout: {{ add .Values.base_timeout .Values.pebble_acme._extra_timeout }}
<<: *logFailedRelease
values:
- "../etc/pebble-acme/values.yaml"
- {{ .Values.pebble_acme | toYaml | indent 8 | trim }}
set:
- name: maintainerEmail
value: {{ .Values.maintainer_email }}
23 changes: 23 additions & 0 deletions pebble-acme/.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/
6 changes: 6 additions & 0 deletions pebble-acme/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: pebble
repository: https://jupyterhub.github.io/helm-chart/
version: 1.0.1
digest: sha256:df6a46ee0acdcbcbc19a1b99687935c51f8e506429355532fa8c9d08732eba66
generated: "2024-02-14T14:21:04.10132015+01:00"
28 changes: 28 additions & 0 deletions pebble-acme/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
apiVersion: v2
name: pebble-acme
description: A mock for Let's Encrypt used for local test deployments

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
dependencies:
- name: pebble
version: 1.0.1
repository: https://jupyterhub.github.io/helm-chart/
4 changes: 4 additions & 0 deletions pebble-acme/requirements.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dependencies:
- name: pebble
version: 1.0.1
repository: https://jupyterhub.github.io/helm-chart/
16 changes: 16 additions & 0 deletions pebble-acme/templates/issuer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: pebble-issuer
spec:
acme:
skipTLSVerify: true
email: [email protected]
server: https://pebble-acme:8443/dir
privateKeySecretRef:
name: pk-pebble-issuer
solvers:
- selector:
http01:
ingress:
class: nginx
2 changes: 2 additions & 0 deletions pebble-acme/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pebble:
fullname: pebble-acme

0 comments on commit b619ca6

Please sign in to comment.