Commit 139b9cea by 据说甜蜜呢

添加accessToken

parent 4607d90c
Pipeline #4152 passed with stage
in 23 seconds
......@@ -13,12 +13,12 @@ echo "Begin creating ${appName}'s settings to the configmap of k8s..."
GetNameSpace namespace
kubectl create namespace ${namespace}
declare servicePrefix=""
GetAccessTokenOf accessToken
for servicePrefix in `ls ./src/Services|xargs -d '/'`
do
GetServiceName ${servicePrefix} serviceName
GetServiceDir ${servicePrefix} ${serviceName} serviceDir
Create ${Environment} ${namespace} ${K8sApiServer} ${serviceDir} ${servicePrefix}
Create ${Environment} ${namespace} ${K8sApiServer} ${serviceDir} ${servicePrefix} ${accessToken}
done
echo ""
......
......@@ -19,7 +19,7 @@ function Create()
curl -X DELETE $deleteUrl -k \
--connect-timeout $2 --max-time $3 --retry $4 \
-H 'Authorization: Bearer '${AccessToken}''
-H 'Authorization: Bearer '${6}''
set -e
......@@ -29,7 +29,7 @@ function Create()
--connect-timeout $2 --max-time $3 --retry $4 \
-H 'Content-Type: application/json' \
-H 'cache-control: no-cache' \
-H 'Authorization: Bearer '${AccessToken}'' \
-H 'Authorization: Bearer '${6}'' \
-d '{
"kind": "ConfigMap",
"apiVersion": "v1",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment