You can use code from your Bitbucket repositories directly in Polyaxon projects without having to check them out on your local machine first.
Overview
Polyaxon supports repos hosted on Bitbucket (cloud and on-premise). You can use code from your Bitbucket repositories directly in Polyaxon projects without having to check them out on your local machine first.
N.B. Polyaxon supports public and private Bitbucket repos, you don’t need to have a Bitbucket account to use code from public Bitbucket repositories.
Access token
Bitbucket allows to create app passwords,
you can also create a user polyaxon
with read-only access to your organization repos, and use the username/password.
Create a secret
- Simple method using an inline token:
kubectl -n polyaxon create secret generic bitbucket-connection-1 --from-literal=POLYAXON_GIT_CREDENTIALS="<USERNAME>:<TOKEN_HASH>"
- Advanced method using a git credentials store (allows pulling submodules):
kind: Secret
apiVersion: v1
metadata:
name: bitbucket-connection-2
type: Opaque
stringData:
.gitconfig: |
[credential "https://<HOSTNAME>"]
helper = store
.git-credentials: |
https://<USERNAME>:<TOKEN_HASH>@<HOSTNAME>
Add the repos you want to use to the connections catalog
- Simple method using the inline token:
connections:
- name: repo1
kind: git
schema:
url: https://bitbucket.com/org/repo1
secret:
name: "bitbucket-connection-1"
- name: repo2
kind: git
schema:
url: https://bitbucket.com/org/repo2
secret:
name: "bitbucket-connection-1"
- name: repo3
kind: git
schema:
url: https://bitbucket.com/org/repo3
secret:
name: "other-connection"
- Advanced method using the git cred store:
connections:
- name: repo4
kind: git
schema:
url: https://bitbucket.com/org/repo4
secret:
name: "bitbucket-connection-2"
mountPath: "/root"
- name: repo5
kind: git
schema:
url: https://bitbucket.com/org/repo5
secret:
name: "bitbucket-connection-2"
mountPath: "/root"