File tree 3 files changed +10
-10
lines changed
resources/plugins/simln/charts/simln
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 3
3
{
4
4
"id" : " tank-0000-ln" ,
5
5
"address" : " https://tank-0000-ln:10009" ,
6
- "macaroon" : " /decoded /admin.macaroon" ,
6
+ "macaroon" : " /config /admin.macaroon" ,
7
7
"cert" : " /config/tls.cert"
8
8
},
9
9
{
10
10
"id" : " tank-0001-ln" ,
11
11
"address" : " https://tank-0001-ln:10009" ,
12
- "macaroon" : " /decoded /admin.macaroon" ,
12
+ "macaroon" : " /config /admin.macaroon" ,
13
13
"cert" : " /config/tls.cert"
14
14
}
15
15
]
Original file line number Diff line number Diff line change @@ -12,12 +12,13 @@ spec:
12
12
command : ["sh", "-c"]
13
13
args :
14
14
- |
15
- cat /config/admin.macaroon.hex | xxd -r -p > /decoded/admin.macaroon
15
+ cp /configmap/* /config
16
+ cat /config/admin.macaroon.hex | xxd -r -p > /config/admin.macaroon
16
17
volumeMounts :
17
- - name : macaroon-volume
18
- mountPath : /decoded
19
18
- name : config-volume
20
19
mountPath : /config
20
+ - name : configmap-volume
21
+ mountPath : /configmap
21
22
containers :
22
23
- name : {{ .Values.name }}
23
24
image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
@@ -27,11 +28,11 @@ spec:
27
28
volumeMounts :
28
29
- name : config-volume
29
30
mountPath : /config
30
- - name : macaroon -volume
31
- mountPath : /decoded
31
+ - name : configmap -volume
32
+ mountPath : /configmap
32
33
volumes :
33
- - name : config -volume
34
+ - name : configmap -volume
34
35
configMap :
35
36
name : {{ include "mychart.fullname" . }}-data
36
- - name : macaroon -volume
37
+ - name : config -volume
37
38
emptyDir : {}
Original file line number Diff line number Diff line change 6
6
from .dashboard import dashboard
7
7
from .deploy import deploy
8
8
from .graph import create , graph , import_network
9
- from .graph import create , graph
10
9
from .hooks import plugin
11
10
from .image import image
12
11
from .ln import ln
You can’t perform that action at this time.
0 commit comments