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 examples/kubernetes/fixed-credentials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
app: device-one
spec:
replicas: 1
replicas: 1 # there can only be one replica as there is one configuration
revisionHistoryLimit: 10
selector:
matchLabels:
Expand Down
4 changes: 2 additions & 2 deletions examples/kubernetes/provisioning-mode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
app: device-one
spec:
replicas: 1
replicas: 1 # to scale to more than one instance you should modify this to use a StatefulSet
revisionHistoryLimit: 10
selector:
matchLabels:
Expand All @@ -15,7 +15,7 @@ spec:
labels:
app: device-one
spec:
initContainers:
initContainers: # on first run copies the device.yml from Secret to PVC volume
- name: config-copy
image: busybox:latest
command:
Expand Down