Skip to content

Commit 82bcfbc

Browse files
author
AlexRogalskiy
committed
Added info on workflows
Updates on github-actions
1 parent f53fc01 commit 82bcfbc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
## Setting image source variables
1+
## Setting base OS layer
2+
## docker build -t container_tag --build-arg IMAGE_SOURCE=node IMAGE_TAG=12-buster .
23
ARG IMAGE_SOURCE=node
34
ARG IMAGE_TAG=12-buster
45

@@ -58,6 +59,7 @@ ENV TZ=UTC \
5859
LC_ALL=$LC_ALL \
5960
LANG=$LC_ALL \
6061
PYTHONIOENCODING=UTF-8 \
62+
PYTHONLEGACYWINDOWSSTDIO=UTF-8 \
6163
PYTHONUNBUFFERED=1 \
6264
PYTHONDONTWRITEBYTECODE=1 \
6365
DEBIAN_FRONTEND=noninteractive \
@@ -70,6 +72,9 @@ ENV USER=${USER:-'cukebot'} \
7072
UID=${UID:-5000} \
7173
GID=${GID:-10000}
7274

75+
ENV npm_config_loglevel=error
76+
ENV IN_DOCKER=True
77+
7378
## Mounting volumes
7479
VOLUME ["$APP_DIR"]
7580

k8s/kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
4141
curl http://localhost:8000/
4242

4343
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
44-
echo "https (secure) enpdoint:"
44+
echo "https (secure) endpoint:"
4545
echo "curl --insecure https://localhost:8443/"
4646
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
4747
curl --insecure https://localhost:8443/

k8s/secure/backend/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
replicas: 1
1616
minReadySeconds: 60
1717
revisionHistoryLimit: 5
18-
progressDeadlineSeconds: 60
18+
progressDeadlineSeconds: 120
1919
strategy:
2020
rollingUpdate:
2121
maxSurge: 10%

0 commit comments

Comments
 (0)