Compare commits

..

3 Commits

Author SHA1 Message Date
ffcaf51b66 add envFrom 2024-02-10 04:08:58 -07:00
30d69f695c change readme 2024-02-10 03:32:06 -07:00
c5feb14abc change names 2024-02-10 03:17:12 -07:00
6 changed files with 21 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
name: Lint and Test Charts name: lint-and-test-charts
on: pull_request on: pull_request

View File

@@ -1,4 +1,4 @@
name: Release Charts name: release-charts
on: on:
push: push:

View File

@@ -1,9 +1,21 @@
# Welcome
Welcome to the documentation for the [alexlebens's Helm charts](https://github.com/alexlebens/helm-charts).
## Getting started ## Getting started
[Helm](https://helm.sh) must be installed to use the charts in this repository. [Helm](https://helm.sh) must be installed to use the charts in this repository.
Refer to Helm's [documentation](https://helm.sh/docs/) to get started. Refer to Helm's [documentation](https://helm.sh/docs/) to get started.
## Installation
```sh
helm repo add alexlebens http://alexlebens.github.io/helm-charts/
```
You can then run `helm search repo alexlebens` to search the charts.
## License ## License
This project is licensed under the terms of the Apache 2.0 License license. This project is licensed under the terms of the Apache 2.0 License license.

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: homepage name: homepage
version: 0.0.1 version: 0.0.2
description: Chart for benphelps homepage description: Chart for benphelps homepage
keywords: keywords:
- dashboard - dashboard

View File

@@ -40,6 +40,10 @@ spec:
- name: {{ $k }} - name: {{ $k }}
value: {{ $v | quote }} value: {{ $v | quote }}
{{- end }} {{- end }}
{{- with .Values.deployment.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts: volumeMounts:
- name: homepage-config - name: homepage-config
subPath: bookmarks.yaml subPath: bookmarks.yaml

View File

@@ -6,6 +6,7 @@ deployment:
tag: v0.8.7 tag: v0.8.7
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
env: env:
envFrom:
resources: resources:
requests: requests:
memory: 50Mi memory: 50Mi