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
4df276df
Commit
4df276df
authored
Jan 11, 2019
by
据说甜蜜呢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加自动缩放脚本
parent
cce7722c
Pipeline
#4333
passed with stage
in 20 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
0 deletions
+57
-0
devops/PipeLines/AutoScaling.sh
+43
-0
devops/PipeLines/Functions.deploy.sh
+14
-0
No files found.
devops/PipeLines/AutoScaling.sh
0 → 100644
View file @
4df276df
#!/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
"[
${
Environment
}
]Auto scaling for
${
appName
}
starting..."
GetCiCdSettings allPublishable noPublishable
if
[
"
${
noPublishable
}
"
==
"1"
]
;
then
echo
""
echo
"Tips: No services need to be cded."
else
GetNameSpace namespace
GetReplicas replicas
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!!!"
AutoScaling
${
namespace
}
${
serviceName
}
${
replicas
}
else
echo
""
echo
"Tips:
${
serviceName
}
will not be deploymented to K8S!!!"
fi
done
fi
echo
""
echo
"[
${
Environment
}
]Auto scaling for
${
appName
}
has been successful."
\ No newline at end of file
devops/PipeLines/Functions.deploy.sh
View file @
4df276df
...
...
@@ -51,3 +51,16 @@ function CD()
fi
echo
"Deployment[
${
Environment
}
] for
${
appName
}
:
${
version
}
has been successful."
}
function
AutoScaling
()
{
declare
namespace
=
$1
declare
serviceName
=
$2
declare
replicas
=
$3
Replace
${
serviceName
}
'.'
'-'
appName
# repository name must be lowercase
ToLower
${
appName
}
appNameOfK8s
kubectl
-n
${
namespace
}
scale deploy
${
appNameOfK8s
}
--replicas
=
${
replicas
}
;
}
\ No newline at end of file
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