Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:

# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )

# Getting the full repository url
export fullRepoUrl=$(params["repoUrl"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
git config --global --add safe.directory '*'
# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )

# Parsing the repo url
export fullRepoUrl=$(params["repoUrl"])
Expand Down
2 changes: 1 addition & 1 deletion charts/otomi-pipelines/templates/tekton-otomi-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
git config --global --add safe.directory '*'
# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )

# Parsing the repo url
export fullRepoUrl=$(params["repoUrl"])
Expand Down