Skip to content

Commit 377acda

Browse files
committed
[CI] Fix sync k8s step
1 parent 00172fa commit 377acda

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.buildkite/scripts/steps/sync-k8s.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ export PATH=$HOME/bin:${PATH}
66
source .buildkite/scripts/install-gh.sh
77
source .buildkite/scripts/common.sh
88

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
1016

1117
cd deploy/kubernetes
1218

deploy/kubernetes/Makefile

+5-4
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ $(eval HASDIFF =$(shell sh -c "git status | grep $(FILE_REPO) | wc -l"))
6262
.PHONY: ci-create-kubernetes-templates-pull-request
6363
ci-create-kubernetes-templates-pull-request:
6464
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"
6869
git checkout -b $(ELASTIC_AGENT_BRANCH)
6970
echo "INFO: add files if any"
7071
git add $(ELASTIC_AGENT_REPO_PATH)$(FILE_REPO)
@@ -77,7 +78,7 @@ ifeq ($(DRY_RUN),TRUE)
7778
echo "INFO: skip pushing branch"
7879
else
7980
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)
8182
echo "INFO: create pull request"
8283
@gh pr create \
8384
--title "Update kubernetes templates for elastic-agent" \

0 commit comments

Comments
 (0)