Skip to content

Commit

Permalink
Fix formatting & tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Hoffjann committed Feb 2, 2024
1 parent dd80f72 commit e9d218e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/generic-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ app:
| `alerting.custom.*.description` | __required if used__ | A longer description of the alert; can include metric labels via templating |
| `sidecars` | `[]` | Additional sidecar containers to be added to the `Pod` |
| `sidecarTemplates` | `[]` | Strings to be templated providing additional sidecar containers to be added to the Pod |
| `initContainers` | `[]` | Additional init containers to be added to the `Pod` |
| `initContainerTemplates` | `[]` | Strings to be templated providing additional init containers to be added to the Pod
| `initContainers` | `[]` | Additional init containers to be added to the `Pod` |
| `initContainerTemplates` | `[]` | Strings to be templated providing additional init containers to be added to the Pod
| `rbac.roles` | `[]` | Namespace-specific Kubernetes RBAC Roles to assign to the service (supports templating) |
| `rbac.clusterRoles` | `[]` | Cluster-wide Kubernetes RBAC Roles to assign to the service (supports templating) |
| `rbac.existingServiceAccount` | | The name of an existing service account to use (instead of automatically creating one for the service) |
Expand Down
8 changes: 4 additions & 4 deletions charts/generic-service/ci/initContainer-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ name: test
fullname: my-test

image:
repository: docker/whalesay
repository: jwilder/whoami
tag: latest

initContainers:
- name: init1
image: docker/whalesay
command: ["cowsay"]
args: ["works!"]
args: ["hi"]

initContainerTemplates:
- |
name: init2
image: {{ .Values.image.repository }}
image: docker/whalesay:{{ .Values.image.tag }}
command: ["cowsay"]
args: ["works!"]
args: ["hi"]
4 changes: 2 additions & 2 deletions charts/generic-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version: ''

image:
registry: docker.io
repository: required
tag: required
# repository: required
# tag: required
pullPolicy: IfNotPresent
pullSecret: ''

Expand Down

0 comments on commit e9d218e

Please sign in to comment.