Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DeploymentConfig to Deployment #3935

Merged
merged 31 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2e24239
adds deployment yamls
brettedw Sep 16, 2024
9991503
uses deploy yaml's
brettedw Sep 16, 2024
d7681ae
ephemeral storage?
brettedw Sep 16, 2024
4b66b7b
Merge branch 'main' into task/dc-to-deploy
brettedw Sep 16, 2024
2548d9d
deploy script updates - remove dc/
brettedw Sep 16, 2024
44bf035
try to scale instead?
brettedw Sep 17, 2024
f5518c6
simplify deploy bash script?
brettedw Sep 23, 2024
9d4c7f5
trailing comma?
brettedw Sep 23, 2024
e8abf52
Merge branch 'main' into task/dc-to-deploy
brettedw Sep 23, 2024
d0e24b8
eval?
brettedw Sep 23, 2024
2c1eb8f
eval log
brettedw Sep 23, 2024
8facdaf
log issue?
brettedw Sep 23, 2024
97380c2
missing quotes
brettedw Sep 23, 2024
145131d
remove dc.yaml
brettedw Sep 23, 2024
71087bb
better logs
brettedw Sep 23, 2024
c160a9b
remove logs
brettedw Sep 23, 2024
efe19ac
Trigger Build
brettedw Sep 24, 2024
fc927c6
try to wait for all replicas running
brettedw Sep 24, 2024
d1ed541
sleep longer
brettedw Sep 24, 2024
e942859
change logging
brettedw Sep 24, 2024
87b917c
kill event logging
brettedw Sep 24, 2024
9dae8ce
use oc rollout status
brettedw Sep 24, 2024
0920e8a
fix ZAP
brettedw Sep 24, 2024
5a1e5dd
actually fix zap
brettedw Sep 24, 2024
6667e78
remove dc.yamls
brettedw Sep 24, 2024
f719c38
decrease memory
brettedw Sep 24, 2024
420bfa8
remove hardcoded namespace redis
brettedw Sep 24, 2024
131a7d0
move volume mounts
brettedw Sep 24, 2024
653880b
Merge branch 'main' into task/dc-to-deploy
conbrad Sep 24, 2024
5f0e099
add cpu request to redis
brettedw Sep 24, 2024
4c728de
Merge branch 'main' into task/dc-to-deploy
brettedw Sep 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions openshift/scripts/common/envars
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ PROJ_PROD="${PROJ_PROD:-e1e498-prod}"
TAG_PROD="${TAG_PROD:-prod}"
PATH_BC="${PATH_BC:-$(dirname ${0})/../templates/build.bc.yaml}"
PATH_DC="${PATH_DC:-$(dirname ${0})/../templates/deploy.dc.yaml}"
PATH_DEPLOY="${PATH_DEPLOY:-$(dirname ${0})/../templates/deploy.yaml}"
PATH_NATS="${PATH_NATS:-$(dirname ${0})/../templates/nats.yaml}"
PATH_NATS_SERVER_CONFIG="${PATH_NATS_SERVER_CONFIG:-$(dirname ${0})/../templates/nats_server.yaml}"
TEMPLATE_PATH="${TEMPLATE_PATH:-$(dirname ${0})/../templates}"
2 changes: 1 addition & 1 deletion openshift/scripts/oc_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ OBJ_NAME="${APP_NAME}-${SUFFIX}"

# Process a template (mostly variable substition)
#
OC_PROCESS="oc -n ${PROJ_TARGET} process -f ${PATH_DC} \
OC_PROCESS="oc -n ${PROJ_TARGET} process -f ${PATH_DEPLOY} \
-p SUFFIX=${SUFFIX} \
-p PROJECT_NAMESPACE=${PROJ_TARGET} \
-p POSTGRES_USER=wps-crunchydb-${SUFFIX} \
Expand Down
Loading
Loading