mirror of https://github.com/helm/helm
Merge pull request #2112 from jascott1/feat/1995-import_child_values
feat(helm): import child values to parentpull/2220/head
commit
6d5b3bbb21
@ -1,21 +1,17 @@
|
|||||||
# Default values for subchart.
|
# Default values for subchart.
|
||||||
# This is a YAML-formatted file.
|
# This is a YAML-formatted file.
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
replicaCount: 1
|
# subchartA
|
||||||
image:
|
|
||||||
repository: nginx
|
|
||||||
tag: stable
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
service:
|
service:
|
||||||
name: nginx
|
name: nginx
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
externalPort: 80
|
externalPort: 80
|
||||||
internalPort: 80
|
internalPort: 80
|
||||||
resources:
|
SCAdata:
|
||||||
limits:
|
SCAbool: false
|
||||||
cpu: 100m
|
SCAfloat: 3.1
|
||||||
memory: 128Mi
|
SCAint: 55
|
||||||
requests:
|
SCAstring: "jabba"
|
||||||
cpu: 100m
|
SCAnested1:
|
||||||
memory: 128Mi
|
SCAnested2: true
|
||||||
|
|
||||||
|
@ -1,21 +1,35 @@
|
|||||||
# Default values for subchart.
|
# Default values for subchart.
|
||||||
# This is a YAML-formatted file.
|
# This is a YAML-formatted file.
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
replicaCount: 1
|
|
||||||
image:
|
|
||||||
repository: nginx
|
|
||||||
tag: stable
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
service:
|
service:
|
||||||
name: nginx
|
name: nginx
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
externalPort: 80
|
externalPort: 80
|
||||||
internalPort: 80
|
internalPort: 80
|
||||||
resources:
|
|
||||||
limits:
|
SCBdata:
|
||||||
cpu: 100m
|
SCBbool: true
|
||||||
memory: 128Mi
|
SCBfloat: 7.77
|
||||||
requests:
|
SCBint: 33
|
||||||
cpu: 100m
|
SCBstring: "boba"
|
||||||
memory: 128Mi
|
|
||||||
|
exports:
|
||||||
|
SCBexported1:
|
||||||
|
SCBexported1A:
|
||||||
|
SCBexported1B: 1965
|
||||||
|
|
||||||
|
SCBexported2:
|
||||||
|
SCBexported2A: "blaster"
|
||||||
|
|
||||||
|
global:
|
||||||
|
kolla:
|
||||||
|
nova:
|
||||||
|
api:
|
||||||
|
all:
|
||||||
|
port: 8774
|
||||||
|
metadata:
|
||||||
|
all:
|
||||||
|
port: 8775
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,21 +1,55 @@
|
|||||||
# Default values for subchart.
|
# Default values for subchart.
|
||||||
# This is a YAML-formatted file.
|
# This is a YAML-formatted file.
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
replicaCount: 1
|
# subchart1
|
||||||
image:
|
|
||||||
repository: nginx
|
|
||||||
tag: stable
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
service:
|
service:
|
||||||
name: nginx
|
name: nginx
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
externalPort: 80
|
externalPort: 80
|
||||||
internalPort: 80
|
internalPort: 80
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 128Mi
|
|
||||||
requests:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 128Mi
|
|
||||||
|
|
||||||
|
|
||||||
|
SC1data:
|
||||||
|
SC1bool: true
|
||||||
|
SC1float: 3.14
|
||||||
|
SC1int: 100
|
||||||
|
SC1string: "dollywood"
|
||||||
|
SC1extra1: 11
|
||||||
|
|
||||||
|
imported-chartA:
|
||||||
|
SC1extra2: 1.337
|
||||||
|
|
||||||
|
overridden-chartA:
|
||||||
|
SCAbool: true
|
||||||
|
SCAfloat: 3.14
|
||||||
|
SCAint: 100
|
||||||
|
SCAstring: "jabathehut"
|
||||||
|
SC1extra3: true
|
||||||
|
|
||||||
|
imported-chartA-B:
|
||||||
|
SC1extra5: "tiller"
|
||||||
|
|
||||||
|
overridden-chartA-B:
|
||||||
|
SCAbool: true
|
||||||
|
SCAfloat: 3.33
|
||||||
|
SCAint: 555
|
||||||
|
SCAstring: "wormwood"
|
||||||
|
SCAextra1: 23
|
||||||
|
|
||||||
|
SCBbool: true
|
||||||
|
SCBfloat: 0.25
|
||||||
|
SCBint: 98
|
||||||
|
SCBstring: "murkwood"
|
||||||
|
SCBextra1: 13
|
||||||
|
|
||||||
|
SC1extra6: 77
|
||||||
|
|
||||||
|
SCBexported1A:
|
||||||
|
SC1extra7: true
|
||||||
|
|
||||||
|
exports:
|
||||||
|
SC1exported1:
|
||||||
|
global:
|
||||||
|
SC1exported2:
|
||||||
|
all:
|
||||||
|
SC1exported3: "SC1expstr"
|
Loading…
Reference in new issue