deployment_files
This commit is contained in:
parent
20651a039a
commit
b0f90ba779
|
@ -21,15 +21,15 @@ System.Net.ServicePointManager.Expect100Continue = false;
|
||||||
|
|
||||||
# **** MY SQL DATABASE CONNECTION ****
|
# **** MY SQL DATABASE CONNECTION ****
|
||||||
|
|
||||||
spring.datasource.url=jdbc:mysql://realnet.cdas4e08uugj.us-east-1.rds.amazonaws.com:3306/realnet_CNSBENEW?createDatabaseIfNotExist=true
|
spring.datasource.url=jdbc:mysql://prod20aug-db-d:3306/db?createDatabaseIfNotExist=true
|
||||||
spring.datasource.username=cnsdev
|
spring.datasource.username=root
|
||||||
spring.datasource.password=cnsdev1234
|
spring.datasource.password=root
|
||||||
|
|
||||||
spring.datasource.driverClassName = com.mysql.cj.jdbc.Driver
|
spring.datasource.driverClassName = com.mysql.cj.jdbc.Driver
|
||||||
|
|
||||||
spring.jpa.hibernate.ddl-auto=update
|
spring.jpa.hibernate.ddl-auto=update
|
||||||
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
|
||||||
# Prefix Path
|
server.servlet.contextPath=/back
|
||||||
|
|
||||||
#spring.jpa.show-sql=true
|
#spring.jpa.show-sql=true
|
||||||
spring.jpa.properties.hibernate.format_sql=true
|
spring.jpa.properties.hibernate.format_sql=true
|
||||||
|
@ -93,5 +93,3 @@ app.oauth2.authorizedRedirectUris=http://localhost:8081/oauth2/redirect,myandroi
|
||||||
|
|
||||||
projectPath=@project.basedir@
|
projectPath=@project.basedir@
|
||||||
angularProjectPath=@project.basedir@/webui
|
angularProjectPath=@project.basedir@/webui
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,10 @@ export const environment = {
|
||||||
|
|
||||||
//Deployment configs
|
//Deployment configs
|
||||||
|
|
||||||
|
backport:'4499/prod20aug19353/back',
|
||||||
|
backendUrl:'/prod20aug19353/back',
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
|
@ -12,5 +12,10 @@ export const environment = {
|
||||||
|
|
||||||
//Deployment configs
|
//Deployment configs
|
||||||
|
|
||||||
|
backport:'4499/prod20aug19353/back',
|
||||||
|
backendUrl:'/prod20aug19353/back',
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
#pulling from github
|
||||||
|
|
||||||
|
FROM alpine/git:v2.30.1 AS code
|
||||||
|
ARG BUILD_ID
|
||||||
|
ARG GITEA_USER
|
||||||
|
ARG GITEA_PASS
|
||||||
|
RUN echo $BUILD_ID
|
||||||
|
LABEL stage=builder
|
||||||
|
LABEL build_id=$BUILD_ID
|
||||||
|
RUN mkdir repo
|
||||||
|
WORKDIR /repo
|
||||||
|
RUN git clone http://$GITEA_USER:$GITEA_PASS@git.io8.dev/risadmin_prod/prod20aug.git
|
||||||
|
#************* Stage 2 - Maven Build **************
|
||||||
|
FROM maven:3.9.3 AS mvn
|
||||||
|
LABEL stage=builder
|
||||||
|
LABEL build=$BUILD_ID
|
||||||
|
WORKDIR /workspace/app
|
||||||
|
COPY --from=code /repo/prod20aug/prod20aug-back-b/authsec_springboot/backend/ /workspace/app
|
||||||
|
RUN mkdir builder/
|
||||||
|
RUN mvn install -Dmaven.test.skip
|
||||||
|
|
||||||
|
#******** Stage 3 - Docker Build *********
|
||||||
|
|
||||||
|
#FROM java:8-jdk-alpine
|
||||||
|
FROM openjdk:8-jdk-alpine
|
||||||
|
LABEL stage=app
|
||||||
|
LABEL build=$BUILD_ID
|
||||||
|
RUN mkdir /usr/app
|
||||||
|
COPY --from=mvn /workspace/app/target/*jar /usr/app/gtest.jar
|
||||||
|
RUN mkdir /usr/app/sureops
|
||||||
|
WORKDIR /usr/app
|
||||||
|
EXPOSE 9292
|
||||||
|
ENTRYPOINT ["java", "-jar", "gtest.jar"]
|
|
@ -0,0 +1,36 @@
|
||||||
|
#!/bin/bash
|
||||||
|
PRJ_NAME=prod20aug-back-b
|
||||||
|
DOCKER_USER=risadmin_prod
|
||||||
|
DOCKER_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
DOCKER_URL=git.io8.dev
|
||||||
|
#********************
|
||||||
|
REPO_NAME=prod20aug
|
||||||
|
GITEA_USER=risadmin_prod
|
||||||
|
GITEA_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
GITEA_EMAIL=ganeshk@dekatc.com
|
||||||
|
GIT_BRANCH=main
|
||||||
|
DOMAIN=git.io8.dev
|
||||||
|
#WEB-URL-PORT
|
||||||
|
CONT_PORT=3306
|
||||||
|
TARGET_PORT=9292
|
||||||
|
PATH_DIR=/data/19353_1724126326369/sureops_deploy/prod20aug/sureops/prod20aug-back-b/deployment
|
||||||
|
#**********************
|
||||||
|
cd $PATH_DIR
|
||||||
|
DOCKER_TAG=1.0
|
||||||
|
docker system prune -f
|
||||||
|
# Stop any existing containers with the same name and ports
|
||||||
|
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
|
||||||
|
# Build and push the Docker image
|
||||||
|
DOCKER_BUILDKIT=0 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg $GITEA_PASS --build-arg $GITEA_USER .
|
||||||
|
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||||
|
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
docker logout $DOCKER_URL
|
||||||
|
docker system prune -f
|
||||||
|
# Deploy the image in a Docker container
|
||||||
|
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
|
||||||
|
curl -X GET "http://13.200.171.124:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
|
@ -0,0 +1,18 @@
|
||||||
|
#pulling from github
|
||||||
|
# FROM alpine/git:v2.30.1 AS code
|
||||||
|
#ARG BUILD_ID
|
||||||
|
#RUN echo $BUILD_ID
|
||||||
|
#LABEL stage=builder
|
||||||
|
#LABEL build_id=$BUILD_ID
|
||||||
|
#RUN mkdir repo
|
||||||
|
#WORKDIR /repo
|
||||||
|
#RUN git clone http://risadmin:admin1234@try.gitea.io/risadmin/a_madhurtest1.git
|
||||||
|
#******** Stage 2 - Mysql Build*********
|
||||||
|
FROM mysql:8.0
|
||||||
|
ENV MYSQL_ROOT_PASSWORD root
|
||||||
|
COPY conf.d /etc/mysql/conf.d
|
||||||
|
COPY *.sql /docker-entrypoint-initdb.d/
|
||||||
|
#COPY --from=code /repo//data/19353_1724126326369/sureops_deploy/prod20aug/prod20aug-db-d/authsec_mysql/mysql/wf_table/backend/src/main/resources/ .
|
||||||
|
VOLUME /var/lib/mysql
|
||||||
|
EXPOSE 3306
|
||||||
|
CMD ["mysqld"]
|
|
@ -0,0 +1,37 @@
|
||||||
|
#!/bin/bash
|
||||||
|
PRJ_NAME=prod20aug-db-d
|
||||||
|
DOCKER_USER=risadmin_prod
|
||||||
|
DOCKER_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
DOCKER_URL=git.io8.dev
|
||||||
|
REPO_NAME=prod20aug
|
||||||
|
GITEA_USER=risadmin_prod
|
||||||
|
GITEA_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
GITEA_EMAIL=ganeshk@dekatc.com
|
||||||
|
GIT_BRANCH=main
|
||||||
|
DOMAIN=git.io8.dev
|
||||||
|
CONT_PORT=3306
|
||||||
|
TARGET_PORT=3306
|
||||||
|
PATH_DIR=/data/19353_1724126326369/sureops_deploy/prod20aug/sureops/prod20aug-db-d/deployment
|
||||||
|
|
||||||
|
#**********************
|
||||||
|
cd $PATH_DIR
|
||||||
|
cp /data/19353_1724126326369/sureops_deploy/prod20aug/prod20aug-db-d/authsec_mysql/mysql/wf_table/*.sql .
|
||||||
|
pwd
|
||||||
|
DOCKER_TAG=1.0
|
||||||
|
# Stop any existing containers with the same name and ports
|
||||||
|
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
|
||||||
|
# Build and push the Docker image
|
||||||
|
DOCKER_BUILDKIT=0 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg $GITEA_PASS --build-arg $GITEA_USER .
|
||||||
|
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||||
|
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
IMAGE_ID=$(docker images --format "{{.ID}}" $IMAGE_NAME)
|
||||||
|
docker logout $DOCKER_URL
|
||||||
|
docker system prune -f
|
||||||
|
# Deploy the image in a Docker container
|
||||||
|
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
#echo "Image $IMAGE_ID deployed in container $PRJ_NAME"
|
||||||
|
curl -X GET "http://13.200.171.124:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
|
@ -0,0 +1,36 @@
|
||||||
|
# For advice on how to change settings please see
|
||||||
|
# http://dev.mysql.com/doc/refman/8.0/en/server-configuration-defaults.html
|
||||||
|
|
||||||
|
[mysqld]
|
||||||
|
#
|
||||||
|
# Remove leading # and set to the amount of RAM for the most important data
|
||||||
|
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
|
||||||
|
# innodb_buffer_pool_size = 128M
|
||||||
|
#
|
||||||
|
# Remove leading # to turn on a very important data integrity option: logging
|
||||||
|
# changes to the binary log between backups.
|
||||||
|
# log_bin
|
||||||
|
#
|
||||||
|
# Remove leading # to set options mainly useful for reporting servers.
|
||||||
|
# The server defaults are faster for transactions and fast SELECTs.
|
||||||
|
# Adjust sizes as needed, experiment to find the optimal values.
|
||||||
|
# join_buffer_size = 128M
|
||||||
|
# sort_buffer_size = 2M
|
||||||
|
# read_rnd_buffer_size = 2M
|
||||||
|
|
||||||
|
# Remove leading # to revert to previous value for default_authentication_plugin,
|
||||||
|
# this will increase compatibility with older clients. For background, see:
|
||||||
|
# https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
|
||||||
|
# default-authentication-plugin=mysql_native_password
|
||||||
|
skip-host-cache
|
||||||
|
skip-name-resolve
|
||||||
|
datadir=/var/lib/mysql
|
||||||
|
socket=/var/run/mysqld/mysqld.sock
|
||||||
|
secure-file-priv=/var/lib/mysql-files
|
||||||
|
user=mysql
|
||||||
|
|
||||||
|
pid-file=/var/run/mysqld/mysqld.pid
|
||||||
|
[client]
|
||||||
|
socket=/var/run/mysqld/mysqld.sock
|
||||||
|
|
||||||
|
!includedir /etc/mysql/conf.d/
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,30 @@
|
||||||
|
# Git clone
|
||||||
|
FROM alpine/git:v2.30.1 AS code
|
||||||
|
ARG BUILD_ID
|
||||||
|
ARG GITEA_USER
|
||||||
|
ARG GITEA_PASS
|
||||||
|
RUN echo $BUILD_ID
|
||||||
|
LABEL stage=builder
|
||||||
|
LABEL build_id=$BUILD_ID
|
||||||
|
RUN mkdir repo
|
||||||
|
WORKDIR /repo
|
||||||
|
RUN git clone http://$GITEA_USER:$GITEA_PASS@git.io8.dev/risadmin_prod/prod20aug.git
|
||||||
|
# angular build
|
||||||
|
FROM node:16.20.2-alpine3.18 as build
|
||||||
|
LABEL stage=app
|
||||||
|
LABEL build_id=$BUILD_ID
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
COPY --from=code /repo/prod20aug/prod20aug-frant-f/authsec_angular/frontend/angular-clarity-master/package.json /repo/prod20aug/prod20aug-frant-f/authsec_angular/frontend/angular-clarity-master/package-lock.json ./
|
||||||
|
RUN npm install
|
||||||
|
COPY --from=code /repo/prod20aug/prod20aug-frant-f/authsec_angular/frontend/angular-clarity-master .
|
||||||
|
ENV NODE_OPTIONS="--max_old_space_size=4096"
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
# configuring nginx web-server
|
||||||
|
|
||||||
|
FROM nginx:1.17.1-alpine
|
||||||
|
#COPY --from=code /repo/cns-beta/springboot/angular-clarity-master/angular-clarity-master/default.conf /etc/nginx/conf.d/default.conf
|
||||||
|
COPY --from=build /usr/src/app/dist /usr/share/nginx/html
|
||||||
|
#RUN ls -a /usr/share/nginx/html/
|
||||||
|
EXPOSE 80
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
#!/bin/bash
|
||||||
|
PRJ_NAME=prod20aug-frant-f
|
||||||
|
DOCKER_USER=risadmin_prod
|
||||||
|
DOCKER_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
DOCKER_URL=git.io8.dev
|
||||||
|
#********************
|
||||||
|
REPO_NAME=prod20aug
|
||||||
|
GITEA_USER=risadmin_prod
|
||||||
|
GITEA_PASS=$(sv get risadmin_prod dockerPassword)
|
||||||
|
GITEA_EMAIL=ganeshk@dekatc.com
|
||||||
|
GIT_BRANCH=main
|
||||||
|
DOMAIN=git.io8.dev
|
||||||
|
#WEB-URL-PORT
|
||||||
|
CONT_PORT=30167
|
||||||
|
TARGET_PORT=80
|
||||||
|
PATH_DIR=/data/19353_1724126326369/sureops_deploy/prod20aug/sureops/prod20aug-frant-f/deployment
|
||||||
|
**********************
|
||||||
|
cd $PATH_DIR
|
||||||
|
DOCKER_TAG=1.0
|
||||||
|
docker system prune -f
|
||||||
|
# Stop any existing containers with the same name and ports
|
||||||
|
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||||
|
|
||||||
|
# Build and push the Docker image
|
||||||
|
DOCKER_BUILDKIT=0 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg BUILD_ID=$DOCKER_TAG --build-arg $GITEA_USER --build-arg $GITEA_PASS .
|
||||||
|
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||||
|
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:latest
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:latest
|
||||||
|
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
docker logout $DOCKER_URL
|
||||||
|
docker system prune -f
|
||||||
|
# Deploy the image in a Docker container
|
||||||
|
#docker run -d --name $PRJ_NAME -p $CONT_PORT:$TARGET_PORT $DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||||
|
curl -X GET "http://13.200.171.124:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
||||||
|
#echo "Image deployed in container $PRJ_NAME"
|
Loading…
Reference in New Issue