Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
microservice-autodevopspipelines
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李春生
microservice-autodevopspipelines
Commits
7daadc12
Commit
7daadc12
authored
Jan 14, 2019
by
据说甜蜜呢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加文件
parent
1809f62e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
devops/PipeLines/RollBack.sh
+44
-0
No files found.
devops/PipeLines/RollBack.sh
0 → 100644
View file @
7daadc12
#!/bin/bash
set
-e
# Import external functions
chmod +x ./devops/PipeLines/Functions.deploy.sh
source
./devops/PipeLines/Functions.deploy.sh
# global variable
RollEnvironmentOf Environment
GetAppName appName
echo
"Continuous deployment[
${
Environment
}
] for
${
appName
}
starting..."
GetCiCdSettings allPublishable noPublishable
if
[
"
${
noPublishable
}
"
==
"1"
]
;
then
echo
""
echo
"Tips: No services need to be cded."
else
GetRollBackVersion version
GetNameSpace namespace
GetRegistryHost registryHost
GetImageUserName registryUserName
for
servicePrefix
in
`
ls
./src/Services|xargs
-d
'/'
`
do
IsPublishableOf
${
servicePrefix
}
isPublishable
GetServiceName
${
servicePrefix
}
serviceName
if
[
"
${
isPublishable
}
"
==
"1"
]
;
then
echo
""
echo
"Tips:
${
serviceName
}
begin deployment to K8S!!!"
CD
${
registryHost
}
${
registryUserName
}
${
serviceName
}
${
version
}
${
namespace
}
else
echo
""
echo
"Tips:
${
serviceName
}
will not be deploymented to K8S!!!"
fi
done
fi
echo
""
echo
"Continuous deployment[
${
Environment
}
] for
${
appName
}
has been successful."
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment