Skip to content

Commit

Permalink
Run ci-tests and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMcKee committed Oct 25, 2023
1 parent b52b134 commit ee0d54c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 23 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Follow these steps:
1. Fork this repo
2. Make desired changes to the chart
3. Bump the chart version
4. Regenerate the chart `README.md`: `docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.0 --template-files ./ci/README.md.gotmpl`
4. Regenerate the chart `README.md`: `docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.3 --template-files ./ci/README.md.gotmpl`
5. Commit and push changes
6. Open 1 pull request per chart you want to change
7. Set pull request title to `[stable/<chart name>]: <description>`
Expand Down Expand Up @@ -119,7 +119,7 @@ All commands to be run from the root of this repo.
To generate chart `README.md` files from the [template](ci/README.md.gotmpl):

```console
docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.0 --template-files ./ci/README.md.gotmpl
docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.3 --template-files ./ci/README.md.gotmpl
```

`helm-conftest`:
Expand All @@ -132,6 +132,6 @@ All commands to be run from the root of this repo.

## License

Copyright © 2022 Delivery Hero
Copyright © 2023 Delivery Hero

Contents of this repository and any charts without a specific license are licensed under the Apache-2.0 License. Some charts may have their own respective license at `<chart>/LICENSE`. When adding a new chart to this repository and the chart is copied from another repository then include the license from the source if is not Apache-2.0 and include a link to the source under the `sources` section in `<chart>/Chart.yaml`.
4 changes: 2 additions & 2 deletions stable/toxiproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ description: |
helm install toxiproxy deliveryhero/toxiproxy --set toxiproxyConfig=my-toxiproxy-config
```
version: "1.3.7"
appVersion: "2.1.2"
version: "1.3.8"
appVersion: "2.7.0"
home: https://github.com/Shopify/toxiproxy
sources:
- https://github.com/Shopify/toxiproxy
Expand Down
12 changes: 9 additions & 3 deletions stable/toxiproxy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# toxiproxy

![Version: 1.3.7](https://img.shields.io/badge/Version-1.3.7-informational?style=flat-square) ![AppVersion: 2.1.2](https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square)
![Version: 1.3.8](https://img.shields.io/badge/Version-1.3.8-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square)

A TCP proxy to simulate network and system conditions for chaos and resiliency testing.

Expand Down Expand Up @@ -68,7 +68,12 @@ helm install my-release deliveryhero/toxiproxy -f values.yaml
| environment | list | `[]` | |
| extraLabels | object | `{}` | |
| frontend.enabled | bool | `false` | |
| frontend.host | string | `"chart-example-ui.local"` | |
| frontend.ingress.annotations | object | `{}` | |
| frontend.ingress.className | string | `""` | |
| frontend.ingress.hosts[0].host | string | `"chart-example-ui.local"` | |
| frontend.ingress.hosts[0].paths[0].path | string | `"/"` | |
| frontend.ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| frontend.ingress.tls | list | `[]` | |
| frontend.repository | string | `"buckle/toxiproxy-frontend"` | |
| frontend.resources | object | `{}` | |
| fullnameOverride | string | `""` | |
Expand All @@ -86,7 +91,8 @@ helm install my-release deliveryhero/toxiproxy -f values.yaml
| init.image.repository | string | `"busybox"` | the docker repository and image to be used for the init container. |
| init.image.tag | string | `"latest"` | the docker image tag for the init container image |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| nodeSelector."kubernetes.io/arch" | string | `"amd64"` | |
| nodeSelector."kubernetes.io/os" | string | `"linux"` | |
| pdb.enabled | bool | `false` | Whether to create a PodDisruptionBudget |
| podAnnotations | object | `{}` | |
| podSecurityContext | object | `{}` | |
Expand Down
35 changes: 20 additions & 15 deletions stable/toxiproxy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
toxiproxyConfig: ""
toxiproxyConfig: ''

replicaCount: 1

Expand All @@ -16,15 +16,17 @@ init:
tag: latest

frontend:
enabled: false # Whether we want to deploy the charts for the frontend or not
repository: buckle/toxiproxy-frontend
resources: {}
# Whether we want to deploy the charts for the frontend or not
enabled: false
repository: buckle/toxiproxy-frontend
resources:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# Frontend host address to access it
ingress:
annotations: {}
className: ""
className: ''
hosts:
- host: chart-example-ui.local
paths:
Expand All @@ -33,8 +35,8 @@ frontend:
tls: []

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
nameOverride: ''
fullnameOverride: ''

serviceAccount:
# Specifies whether a service account should be created
Expand All @@ -47,10 +49,12 @@ serviceAccount:
pdb:
enabled: false

podSecurityContext: {}
podSecurityContext:
{}
# fsGroup: 2000

securityContext: {}
securityContext:
{}
# capabilities:
# drop:
# - ALL
Expand Down Expand Up @@ -79,8 +83,9 @@ consumer:

ingress:
enabled: true
className: ""
annotations: {}
className: ''
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
Expand All @@ -98,7 +103,8 @@ args:

environment: []

resources: {}
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand All @@ -110,16 +116,15 @@ resources: {}
# cpu: 100m
# memory: 128Mi


deploymentAnnotations: {}

podAnnotations: {}

extraLabels: {}

nodeSelector:
kubernetes.io/arch: amd64
kubernetes.io/os: linux
kubernetes.io/arch: amd64
kubernetes.io/os: linux

tolerations: []

Expand Down

0 comments on commit ee0d54c

Please sign in to comment.