Skip to content

Commit

Permalink
Merge pull request #73 from suecodelabs/fix/default-values-non-prod
Browse files Browse the repository at this point in the history
Fix/default values non prod
  • Loading branch information
pcktdmp authored May 6, 2022
2 parents 0fa2e42 + bd10563 commit df219b2
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 13 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ make build
### Prepare for release

```sh
cd docs
helm package ../charts/cnfuzz
helm repo index --url https://suecodelabs.github.io/cnfuzz/ .
```
Expand Down
4 changes: 2 additions & 2 deletions charts/cnfuzz/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ 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
version: 0.1.1

# 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: "v0.1.0"
appVersion: "v0.1.1"

dependencies:
- name: redis
Expand Down
19 changes: 11 additions & 8 deletions charts/cnfuzz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,22 @@

redis:
enabled: true
architecture: standalone
replica:
replicaCount: 1
auth:
enabled: false

minio:
enabled: true
# Uncomment (and change) any of the following if you want to deploy minio on smaller environments
#mode: standalone # only use for development/testing
#replicas: 1
#persistence:
# size: 1Gi
#resources:
# requests:
# memory: 1Gi
# Comment (and/or change) any of the following if you want to deploy minio to a production scenario.
mode: standalone # only use for development/testing
replicas: 1
persistence:
size: 1Gi
resources:
requests:
memory: 1Gi
buckets:
- name: restler-reports
policy: upload
Expand Down
Binary file added docs/cnfuzz-0.1.1.tgz
Binary file not shown.
25 changes: 22 additions & 3 deletions docs/index.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
apiVersion: v1
entries:
cnfuzz:
- apiVersion: v2
appVersion: v0.1.1
created: "2022-05-06T14:26:49.935194+02:00"
dependencies:
- condition: redis.enabled
name: redis
repository: https://charts.bitnami.com/bitnami
version: ^16.0.0
- condition: minio.enabled
name: minio
repository: https://charts.min.io/
version: ^3.6.2
description: A Helm chart for cnfuzz
digest: 301059e2327fd87597b23c3359d829783fcf785920fa356fc9da1424126262a8
name: cnfuzz
type: application
urls:
- https://suecodelabs.github.io/cnfuzz/cnfuzz-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: v0.1.0
created: "2022-05-06T12:07:43.099106+02:00"
created: "2022-05-06T14:26:49.927594+02:00"
dependencies:
- condition: redis.enabled
name: redis
Expand All @@ -22,7 +41,7 @@ entries:
version: 0.1.0
- apiVersion: v2
appVersion: v0.0.3-alpha
created: "2022-05-06T12:07:43.090655+02:00"
created: "2022-05-06T14:26:49.919714+02:00"
dependencies:
- condition: redis.enabled
name: redis
Expand All @@ -39,4 +58,4 @@ entries:
urls:
- https://suecodelabs.github.io/cnfuzz/cnfuzz-0.0.3-alpha.tgz
version: 0.0.3-alpha
generated: "2022-05-06T12:07:43.081934+02:00"
generated: "2022-05-06T14:26:49.910274+02:00"

0 comments on commit df219b2

Please sign in to comment.