Skip to content

Commit

Permalink
adjust yopass docs and release new chart version
Browse files Browse the repository at this point in the history
  • Loading branch information
rlex committed Oct 19, 2021
1 parent 9ecaded commit 74710fe
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 19 deletions.
2 changes: 1 addition & 1 deletion charts/yopass/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ home: https://github.com/jhaals/yopass
# 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.3
version: 0.2.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
Expand Down
34 changes: 24 additions & 10 deletions charts/yopass/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# yopass

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 11.1.2](https://img.shields.io/badge/AppVersion-11.1.2-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 11.1.2](https://img.shields.io/badge/AppVersion-11.1.2-informational?style=flat-square)

Secure sharing for secrets, passwords and files
Please note that by default this chart does not have any kind of persistence - you will need to configure persistence for memcached subchart.

**Homepage:** <https://github.com/jhaals/yopass>

## Source Code

* <https://github.com/rlex/helm-charts>

## Requirements

| Repository | Name | Version |
Expand All @@ -21,9 +27,9 @@ Please note that by default this chart does not have any kind of persistence - y
| autoscaling.minReplicas | int | `1` | |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| fullnameOverride | string | `""` | Overrides helm-generated chart fullname |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"jhaals/yopass"` | |
| image.tag | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
| image.repository | string | `"jhaals/yopass"` | Image repository |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | specifies pull secrets for image repository |
| ingress.annotations | object | `{}` | additional annotations for ingress |
| ingress.className | string | `""` | specifies ingress class name (ie nginx) |
Expand All @@ -32,21 +38,29 @@ Please note that by default this chart does not have any kind of persistence - y
| ingress.hosts[0].paths[0].path | string | `"/"` | |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| ingress.tls | list | `[]` | |
| memcached | object | `{"metrics":{"enabled":false,"serviceMonitor":{"enabled":false}}}` | Allows customization of memcached chart dependency. See bitnami/memcached chart for details. ServiceMonitor is provided as an example |
| memcached | object | `{"architecture":"standalone","metrics":{"enabled":false,"serviceMonitor":{"enabled":false}},"persistence":{"accessModes":["ReadWriteOnce"],"annotations":{},"enabled":false,"size":"8Gi","storageClass":""}}` | Allows customization of memcached chart dependency. See bitnami/memcached chart for more variables |
| memcached.architecture | string | `"standalone"` | Memcached architecture. Allowed values: standalone or high-availability |
| memcached.metrics.enabled | bool | `false` | enable memcached-exporter sidecard |
| memcached.metrics.serviceMonitor.enabled | bool | `false` | enable ServiceMonitor |
| memcached.persistence.accessModes | list | `["ReadWriteOnce"]` | Persistent Volume Access Mode |
| memcached.persistence.annotations | object | `{}` | Persistent Volume Claim annotations |
| memcached.persistence.enabled | bool | `false` | Enable persistence using PVC (Requires architecture: "high-availability") |
| memcached.persistence.size | string | `"8Gi"` | PVC Storage Request for Memcached volume |
| memcached.persistence.storageClass | string | `""` | PVC Storage Class for Memcached volume |
| metrics.enabled | bool | `false` | enables yopass metrics |
| metrics.serviceMonitor.enabled | bool | `false` | enables yopass serviceMonitor. Requires metrics enabled |
| nameOverride | string | `""` | overrides chart name |
| nodeSelector | object | `{}` | node selector for scheduling pods |
| podAnnotations | object | `{}` | additional annotations for server pod |
| podSecurityContext | object | `{}` | additional security context for server pod |
| replicaCount | int | `1` | |
| podAnnotations | object | `{}` | annotations for pod |
| podSecurityContext | object | `{}` | security context for pod |
| replicaCount | int | `1` | Amount of replicas to run |
| resources | object | `{"limits":{"cpu":"100m","memory":"128Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | resource limits and requests |
| securityContext | object | `{}` | additional security context for server |
| securityContext | object | `{}` | security context for pod |
| service.port | int | `1337` | service port |
| service.type | string | `"ClusterIP"` | service type |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
| serviceAccount.name | string | `""` | The name of the service account to use. -- If not set and create is true, a name is generated using the fullname template |
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| tolerations | list | `[]` | tolerations for scheduling pods |

----------------------------------------------
Expand Down
32 changes: 24 additions & 8 deletions charts/yopass/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,30 @@ nameOverride: ""
# -- Overrides helm-generated chart fullname
fullnameOverride: ""

# -- Amount of replicas to run
replicaCount: 1

image:
# -- Image repository
repository: jhaals/yopass
# -- Image pull policy
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# -- Overrides the image tag whose default is the chart appVersion.
tag: ""

serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# -- If not set and create is true, a name is generated using the fullname template
# -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
name: ""

# -- additional annotations for server pod
# -- annotations for pod
podAnnotations: {}
# -- additional security context for server pod
# -- security context for pod
podSecurityContext: {}
# -- additional security context for server
# -- security context for pod
securityContext: {}

service:
Expand Down Expand Up @@ -90,11 +92,25 @@ tolerations: []
# -- affinity for scheduling pods
affinity: {}

# -- Allows customization of memcached chart dependency. See bitnami/memcached chart for details. ServiceMonitor is provided as an example
# -- Allows customization of memcached chart dependency. See bitnami/memcached chart for more variables
memcached:
# -- Memcached architecture. Allowed values: standalone or high-availability
architecture: standalone
persistence:
# -- Enable persistence using PVC (Requires architecture: "high-availability")
enabled: false
# -- PVC Storage Class for Memcached volume
storageClass: ""
# -- Persistent Volume Claim annotations
annotations: {}
# -- Persistent Volume Access Mode
accessModes:
- ReadWriteOnce
# -- PVC Storage Request for Memcached volume
size: 8Gi
metrics:
# -- enable memcached-exporter sidecard
enabled: false
serviceMonitor:
# -- enable ServiceMonitor
enabled: false
enabled: false

0 comments on commit 74710fe

Please sign in to comment.