mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Merge pull request #168 from mgoodness/spartakus
Spartakus - static container name
This commit is contained in:
@@ -44,11 +44,11 @@ The following tables lists the configurable parameters of the Spartakus chart an
|
||||
|
||||
| Parameter | Description | Default |
|
||||
| ------------------------------- | ------------------------------- | ---------------------------------------------------------- |
|
||||
| `image` | Spartakus image | `gcr.io/google_containers/spartakus-amd64:{VERSION}` |
|
||||
| `image` | Container image | `gcr.io/google_containers/spartakus-amd64:{VERSION}` |
|
||||
| `imagePullPolicy` | Image pull policy | `Always` if `image` tag is `latest`, else `IfNotPresent` |
|
||||
| `resources.requests.cpu` | CPU resource request | `1m` |
|
||||
| `resources.requests.cpu` | CPU resource request | `2m` |
|
||||
| `resources.requests.memory` | Memory resource request | `8Mi` |
|
||||
| `uuid` | Unique cluster ID | Dynamically-generated using `uuidv4` template function |
|
||||
| `uuid` | Unique cluster ID | Dynamically generated using `uuidv4` template function |
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ spec:
|
||||
release: "{{ .Release.Name }}"
|
||||
spec:
|
||||
containers:
|
||||
- name: {{ template "fullname" . }}
|
||||
- name: {{ template "name" . }}
|
||||
image: "{{ .Values.image }}"
|
||||
imagePullPolicy: {{ default "" .Values.imagePullPolicy | quote }}
|
||||
args:
|
||||
|
||||
@@ -1,13 +1,15 @@
|
||||
## Container image
|
||||
##
|
||||
image: gcr.io/google_containers/spartakus-amd64:v1.0.0
|
||||
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
## imagePullPolicy
|
||||
## Default: 'Always' if image tag is 'latest', else 'IfNotPresent'
|
||||
## Ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
# imagePullPolicy:
|
||||
|
||||
## Configure resource requests and limits
|
||||
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
||||
## Resource requests and limits
|
||||
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
||||
##
|
||||
resources:
|
||||
# limits:
|
||||
|
||||
Reference in New Issue
Block a user