Added build-configmap as env to build-cron
This commit is contained in:
parent
f1e41b3333
commit
548dd14091
3 changed files with 4 additions and 2 deletions
|
@ -104,7 +104,6 @@
|
|||
#"REDIRECTS"
|
||||
(generate-redirects config 2)))))))
|
||||
|
||||
; TODO add to build-cron env
|
||||
(defn-spec generate-build-configmap pred/map-or-seq?
|
||||
[config websiteconfig?]
|
||||
(let [{:keys [unique-name
|
||||
|
|
|
@ -31,6 +31,8 @@ spec:
|
|||
memory: BUILD_MEMORY_LIMIT
|
||||
command: ["/entrypoint.sh"]
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: build-configmap
|
||||
- secretRef:
|
||||
name: build-secret
|
||||
volumeMounts:
|
||||
|
|
|
@ -208,7 +208,8 @@
|
|||
:imagePullPolicy "IfNotPresent",
|
||||
:resources {:requests {:cpu "500m", :memory "256Mi"}, :limits {:cpu "1700m", :memory "512Mi"}},
|
||||
:command ["/entrypoint.sh"],
|
||||
:envFrom [{:secretRef {:name "build-secret"}}],
|
||||
:envFrom [{:configMapRef {:name "build-configmap"}}
|
||||
{:secretRef {:name "build-secret"}}],
|
||||
:volumeMounts [{:name "content-volume", :mountPath "/var/www/html/website"}
|
||||
{:name "hash-state-volume", :mountPath "/var/hashfile.d"}]}],
|
||||
:volumes [{:name "content-volume", :persistentVolumeClaim {:claimName "content-volume"}}
|
||||
|
|
Loading…
Reference in a new issue