File tree 3 files changed +11
-17
lines changed
openshift/templates/ledger-browser
3 files changed +11
-17
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# tmp script files
10
10
* _DeploymentConfig.json
11
+ * _Deployment.json
11
12
* _BuildConfig.json
12
13
tmp /
13
14
Original file line number Diff line number Diff line change
1
+ WALLET_ENCRYPTION_KEY=prompt_skipped
2
+ INDY_WALLET_SEED=prompt_skipped
3
+ INDY_WALLET_DID=prompt_skipped
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ objects:
101
101
name : ${NAME}
102
102
weight : 100
103
103
104
- - kind : DeploymentConfig
105
- apiVersion : v1
104
+ - kind : Deployment
105
+ apiVersion : apps/ v1
106
106
metadata :
107
107
name : ${NAME}
108
108
annotations :
@@ -114,22 +114,12 @@ objects:
114
114
spec :
115
115
strategy :
116
116
type : Recreate
117
- triggers :
118
- - type : ImageChange
119
- imageChangeParams :
120
- automatic : true
121
- containerNames :
122
- - ${NAME}
123
- from :
124
- kind : ImageStreamTag
125
- namespace : ${IMAGE_NAMESPACE}
126
- name : ${SOURCE_IMAGE_NAME}:${TAG_NAME}
127
- - type : ConfigChange
128
117
replicas : 1
129
118
selector :
130
- app : ${NAME}
131
- app-group : ${APP_GROUP}
132
- env : ${TAG_NAME}
119
+ matchLabels :
120
+ app : ${NAME}
121
+ app-group : ${APP_GROUP}
122
+ env : ${TAG_NAME}
133
123
template :
134
124
metadata :
135
125
name : ${NAME}
@@ -144,7 +134,7 @@ objects:
144
134
claimName : ${PERSISTENT_VOLUME_NAME}
145
135
containers :
146
136
- name : ${NAME}
147
- image : " "
137
+ image : image-registry.openshift-image-registry.svc:5000/${IMAGE_NAMESPACE}/${NAME}:${TAG_NAME}
148
138
command :
149
139
- ./scripts/start_webserver.sh
150
140
ports :
You can’t perform that action at this time.
0 commit comments