File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,13 @@ export PATH=$HOME/bin:${PATH}
6
6
source .buildkite/scripts/install-gh.sh
7
7
source .buildkite/scripts/common.sh
8
8
9
- export GITHUB_TOKEN=$( retry 5 vault kv get -field token kv/ci-shared/platform-ingest/github_token)
9
+ GITHUB_TOKEN_VAULT_PATH=" kv/ci-shared/platform-ingest/github_token"
10
+ GITHUB_USERNAME_SECRET=$( retry 5 vault kv get -field username ${GITHUB_TOKEN_VAULT_PATH} )
11
+ export GITHUB_USERNAME_SECRET
12
+ GITHUB_EMAIL_SECRET=$( retry 5 vault kv get -field email ${GITHUB_TOKEN_VAULT_PATH} )
13
+ export GITHUB_EMAIL_SECRET
14
+ GITHUB_TOKEN_SECRET=$( retry 5 vault kv get -field token ${GITHUB_TOKEN_VAULT_PATH} )
15
+ export GITHUB_TOKEN_SECRET
10
16
11
17
cd deploy/kubernetes
12
18
Original file line number Diff line number Diff line change @@ -62,9 +62,10 @@ $(eval HASDIFF =$(shell sh -c "git status | grep $(FILE_REPO) | wc -l"))
62
62
.PHONY : ci-create-kubernetes-templates-pull-request
63
63
ci-create-kubernetes-templates-pull-request :
64
64
ifeq ($(HASDIFF ) ,1)
65
- echo "INFO: Create branch to update k8s templates"
66
- git config user.name obscloudnativemonitoring
67
- git config user.email obs-cloudnative-monitoring@elastic.co
65
+ echo "INFO: Create branch to update k8s templates"
66
+ git config user.name "${GITHUB_USERNAME_SECRET}"
67
+ git config user.email "${GITHUB_EMAIL_SECRET}"
68
+ git config remote.origin.url "https://${GITHUB_USERNAME_SECRET}:${GITHUB_EMAIL_SECRET}@github.com/elastic/kibana.git"
68
69
git checkout -b $(ELASTIC_AGENT_BRANCH)
69
70
echo "INFO: add files if any"
70
71
git add $(ELASTIC_AGENT_REPO_PATH)$(FILE_REPO)
@@ -77,7 +78,7 @@ ifeq ($(DRY_RUN),TRUE)
77
78
echo "INFO: skip pushing branch"
78
79
else
79
80
echo "INFO: push branch"
80
- @git push --set-upstream origin $(ELASTIC_AGENT_BRANCH) -u "$(GITHUB_TOKEN)"
81
+ @git push --set-upstream origin $(ELASTIC_AGENT_BRANCH)
81
82
echo "INFO: create pull request"
82
83
@gh pr create \
83
84
--title "Update kubernetes templates for elastic-agent" \
You can’t perform that action at this time.
0 commit comments