Live data from Hacker News

Atlassian announces Bitbucket Deployments: Confidence to release early and often

blog.bitbucket.org

1–10 of 29 posts

Re: Atlassian announces Bitbucket Deployments: Confidence to release early and often

#3

does this support any other CI like jenkins apart from bitbucket-pipelines?

Today, Deployments is only for users of Bitbucket Pipelines. However, there are plans to add API for third party CI tools like Jenkins and others.

Re: Atlassian announces Bitbucket Deployments: Confidence to release early and often

#5

does this support any other CI like jenkins apart from bitbucket-pipelines?

One idea I've seen broadly recommended if you don't want to run your whole tech stack & all environments (Test & Prod environment servers/DBs) in the cloud, i.e. as a DockerHub container or something, is to instead use WebHooks or CURL requests to call localized Jenkins CI within your private/local network to then kick off final builds/deployments to real environments that way, after the initial build succeeds and possibly even a throwaway environment gets spun up and tests pass in the Cloud.

That can be done using either the built-in Jenkins API https://wiki.jenkins.io/display/JENKINS/Remote+access+API or "Trigger Builds Remotely" Build Trigger option (which basically uses the same mechanism with your own Job-specific token/key). Nice feature is that BitBucket Pipelines supports "environment variables" to enable securely storing Jenkins API keys or tokens that let you securely tunnel through corporate FW rules and the like: https://confluence.atlassian.com/bitbucket/environment-varia...

Re: Atlassian announces Bitbucket Deployments: Confidence to release early and often

#8

I can't wait to use this. Is there planned support for FTP/SFTP? I only saw deployment plans for container-like services. Right now I have a pipeline script wrote using lftp but I'd prefer first-party support for SFTP deployments.

You should be able to deploy using FTP or SFTP with Bitbucket Pipelines already. A guide on how to set up SFTP (including SSH keys) can be found here: https://community.atlassian.com/t5/Bitbucket-questions/How-d...
Post reply on HN