continuous-deployment

How to deploy to AWS Kubernetes from Azure DevOps

人走茶凉 提交于 2020-06-26 21:53:04
问题 I'm using Azure DevOps, to handle PBI, repos, PRS, and builds, but all my infrastructure, including Kubernetes is managed by AWS. There's not documentation, neither "the right and easy way" of how to deploy to AWS EKS using Azure DevOps Tasks. I found this solution, its a good solution, but would be awesome to know how you guys resolve it, or if there are more approaches. 回答1: After a research and try and failure, I found another way to do it, without messing around with shell scripts. You

How to deploy to AWS Kubernetes from Azure DevOps

孤者浪人 提交于 2020-06-26 21:52:32
问题 I'm using Azure DevOps, to handle PBI, repos, PRS, and builds, but all my infrastructure, including Kubernetes is managed by AWS. There's not documentation, neither "the right and easy way" of how to deploy to AWS EKS using Azure DevOps Tasks. I found this solution, its a good solution, but would be awesome to know how you guys resolve it, or if there are more approaches. 回答1: After a research and try and failure, I found another way to do it, without messing around with shell scripts. You

Dependencies Between Workflows on Github Actions

☆樱花仙子☆ 提交于 2020-06-23 05:50:06
问题 I have a monorepo with two workflows: .github/workflows/test.yml name: test on: [push, pull_request] jobs: test-packages: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: test packages run: | yarn install yarn test ... .github/workflows/deploy.yml deploy-packages: runs-on: ubuntu-latest needs: test-packages steps: - uses: actions/checkout@v1 - name: deploy packages run: | yarn deploy env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} ... This doesn't work, I can't reference a job

Is there a way to “install” nuget package like the way Visual Studio does, but on a deployment server

六月ゝ 毕业季﹏ 提交于 2020-06-17 12:53:07
问题 Background: I am reasonably new to packaging and publishing nuget. Long story short, I have a C# project (Let's call it MYAPI project) which depends on a bunch of other nuget packages. Some consumers of MYAPI, expect to reference it as a nuget package and deal with their products' deployment on their own, while some other consumers expect MYAPI dlls to be installed in specific folders from where they will pick it up at runtime. So I have packaged MYAPI as a nuget and published it onto an

Proper management of application settings when using VSTS and Azure

梦想与她 提交于 2020-05-27 10:50:42
问题 There are two different ways how to manage the application settings if you use VSTS and Azure. Please keep in mind this is only an example of tools used for continuous deployment. You can override JSON files(Web config in older systems) in the CD pipeline in VSTS or you can override the settings in Azure ‘Application Setting’ section. I’m just thinking what setting should be managed where? My idea is to manage settings which depend on 3rd party modules like databases (connection strings),

Proper management of application settings when using VSTS and Azure

霸气de小男生 提交于 2020-05-27 10:50:29
问题 There are two different ways how to manage the application settings if you use VSTS and Azure. Please keep in mind this is only an example of tools used for continuous deployment. You can override JSON files(Web config in older systems) in the CD pipeline in VSTS or you can override the settings in Azure ‘Application Setting’ section. I’m just thinking what setting should be managed where? My idea is to manage settings which depend on 3rd party modules like databases (connection strings),

Proper management of application settings when using VSTS and Azure

筅森魡賤 提交于 2020-05-27 10:48:59
问题 There are two different ways how to manage the application settings if you use VSTS and Azure. Please keep in mind this is only an example of tools used for continuous deployment. You can override JSON files(Web config in older systems) in the CD pipeline in VSTS or you can override the settings in Azure ‘Application Setting’ section. I’m just thinking what setting should be managed where? My idea is to manage settings which depend on 3rd party modules like databases (connection strings),

Do Heroku staging apps share database with review apps?

喜你入骨 提交于 2020-05-16 04:10:15
问题 I've noticed some odd behaviour when working with review apps. I created a review app for a pull request I was working on. It's parent was my staging app. As part of the pull request I migrated the database many times and I was testing those migrations with the review app. I'm working with Rails. I was preparing to merge my changes and deploy to the staging app, but I noticed that the data in my staging app had changed. There have been no deploys to staging since I started this work. For

Do Heroku staging apps share database with review apps?

徘徊边缘 提交于 2020-05-16 04:09:59
问题 I've noticed some odd behaviour when working with review apps. I created a review app for a pull request I was working on. It's parent was my staging app. As part of the pull request I migrated the database many times and I was testing those migrations with the review app. I'm working with Rails. I was preparing to merge my changes and deploy to the staging app, but I noticed that the data in my staging app had changed. There have been no deploys to staging since I started this work. For

I'm trying to integrate Bitbucket into AWS Code Pipeline? What is the best approach?

ⅰ亾dé卋堺 提交于 2020-05-07 10:52:51
问题 I want to integrate my code from Bitbucket into AWS Code Pipeline. I unable to find proper examples on the same. My source code is in .Net. Can someone please guide me. Thanks. 回答1: You can integrate Bitbucket with AWS CodePipeline by using webhooks that call to an AWS API Gateway, which invokes a Lambda function (which calls into CodePipeline). There is an AWS blog that walks you thru this: Integrating Git with AWS CodePipeline 回答2: BitBucket has a service called PipeLines which can deploy