Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/headroom-controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ See [values.yaml](./values.yaml) for detailed configuration.

| Parameter | Description | Default |
|-----------|-------------|---------|
| `replicaCount` | Number of controller replicas. It is not recommended to alter this value. | `1` |
| `image` | Container image | See [values.yaml](./values.yaml) |
| `replicas` | Number of controller replicas. It is not recommended to alter this value. | `1` |
| `imagePullPolicy` | Image pull policy | `IfNotPresent` |
| `imagePullSecrets` | Image pull secrets | `[]` |
| `nameOverride` | Override chart name | `""` |
Expand Down
2 changes: 1 addition & 1 deletion chart/headroom-controller/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "headroom-controller.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.replicas }}
selector:
matchLabels:
{{- include "headroom-controller.selectorLabels" . | nindent 6 }}
Expand Down
4 changes: 2 additions & 2 deletions chart/headroom-controller/values.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Default values for headroom-controller
replicaCount: 1

image: ghcr.io/openfaasltd/headroom-controller:v0.0.1-rc1

imagePullPolicy: IfNotPresent

replicas: 1

rbac:
create: true
# Role can be either "Role" or "ClusterRole"
Expand Down
Loading