Skip to content

Commit

Permalink
Updated README.md values.yaml for umbrella chart
Browse files Browse the repository at this point in the history
  • Loading branch information
qshao-pivotal committed May 21, 2018
1 parent 03f39d5 commit ecfdcf9
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 45 deletions.
6 changes: 3 additions & 3 deletions templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To connect from a client pod:
spec:
containers:
- name: zookeeper-client
image: {{ .Values.image }}:{{ .Values.imageTag }}
image: {{index .Values "cp-zookeeper" "image" }}:{{index .Values "cp-zookeeper" "imageTag" }}
command:
- sh
- -c
Expand Down Expand Up @@ -47,7 +47,7 @@ To connect from a client pod:
## ------------------------------------------------------
To connect from a client pod:

1. Deploy a zookeeper client pod with configuration:
1. Deploy a kafka client pod with configuration:

apiVersion: v1
kind: Pod
Expand All @@ -57,7 +57,7 @@ To connect from a client pod:
spec:
containers:
- name: kafka-client
image: {{ .Values.image }}:{{ .Values.imageTag }}
image: {{ index .Values "cp-kafka" "image" }}:{{ index .Values "cp-kafka" "imageTag" }}
command:
- sh
- -c
Expand Down
90 changes: 48 additions & 42 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,25 @@ cp-zookeeper:
imageTag: 4.1.0
persistence:
enabled: true
# storageClass: ""
## The size of the PersistentVolume to allocate to each Zookeeper Pod in the StatefulSet. For
## production servers this number should likely be much larger.
##
## Size for Data dir, where ZooKeeper will store the in-memory database snapshots.
dataDirSize: 5Gi
# dataDirStorageClass: ""

## Size for data log dir, which is a dedicated log device to be used, and helps avoid competition between logging and snaphots.
dataLogDirSize: 5Gi
# resources:
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# dataLogDirStorageClass: ""
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

## ------------------------------------------------------
## Kafka
Expand All @@ -35,49 +44,46 @@ cp-kafka:
enabled: true
# storageClass: ""
size: 5Gi
# resources:
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

## ------------------------------------------------------
## Schema Registry
## ------------------------------------------------------
cp-schema-registry:
enabled: true
# resources:
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
image: confluentinc/cp-schema-registry
imageTag: 4.1.0
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

## ------------------------------------------------------
## REST Proxy
## ------------------------------------------------------
cp-kafka-rest:
enabled: true
# resources:
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

## ------------------------------------------------------
## Kafka Connect
## ------------------------------------------------------
cp-kafka-connect:
enabled: true
# resources:
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
image: confluentinc/cp-kafka-rest
imageTag: 4.1.0
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

0 comments on commit ecfdcf9

Please sign in to comment.