Questions tagged [devops-services]

Cloud software services that build, test, and deliver applications continuously, available on cloud platforms such as IBM Bluemix. Individual services are available from tool providers like GitHub or Slack. Use this tag for questions about DevOps services like toolchains and continuous delivery. For questions about DevOps practices, use the tag devops instead.

136 questions
31
votes
5 answers

Remove service on docker-compose through overriding

I want to remove a container defined in docker-compose.yml file when we run in composition/override with another file docker-compose.prod.yml, by example: # docker-compose.yml version: 2 services: www: image: php56 db_for_development: …
Francesco Bianco
  • 519
  • 1
  • 5
  • 12
19
votes
8 answers

Is there a way to visualize AWS current running infrastructure?

for example, how my ec2 instances are connected, how many different clusters available, what instances are behind ELB, what security groups are tagged to each instance, basically i'm looking for a architecture of my current AWS environment
Harsha Vardhan
  • 211
  • 1
  • 2
  • 4
9
votes
1 answer

What is a binary artifact?

I came across this term while looking for build automation in devops, I still am unsure about what exactly this term means. Can anyone explain?
8
votes
4 answers

Terraform - Resource not found for variable despite having it declared in the same file

Terraform can't find a resource which is declared in the same file where the reference is. It seems that this line is causing trouble: role_arn = "${aws_iam_role.newsapi_lambda_codepipeline.arn}". It can't find newsapi_lambda_codepipeline which is…
7
votes
1 answer

Kubernetes : Dynamic Storage Provisioning using host-path

My question is about PersistentVolumeClaim I have one node cluster setup on aws ec2 I am trying to create a storage class using kubernetes.io/host-path as Provisioner. yaml file content for storage class as follows, kind: StorageClass apiVersion:…
Yudi
  • 831
  • 4
  • 10
  • 19
6
votes
3 answers

How to check if the Key Pair is still used in EC2?

Our previous Devops created several Key Pairs in EC2. It looks like some of them are not used anymore. So I would like to delete them. How can I find when the Keypairs were created and if they are currently used (preferably in the Console)?
4
votes
1 answer

How can we copy a bulk of workitems from one project to another in Azure Devops?

I need to copy a list of work items from one project to another project within an organisation in Azure Devops, is that possible? how to do that?
4
votes
3 answers

Microsoft TeamFoundationServer ExtendedClient Not compatible with Asp.Net Core 3

This package is not compatible with Asp.Net Core 3 web api. Only .net framework :/. Quick describe: I am working on an custom web api project with asp.net core 3.0. The goal is to connect with TFS 2013 to create/update/event listener work items. I…
4
votes
1 answer

Is there a way to get the amount of lines changed in a Pull Request via the Dev Ops Service REST API?

I am currently doing my thesis and analyzing the behavior for code reviews. For this I want to know the size of the pull request that is reviewed. The rest of the information for example authors, reviewers, times etc. I got already by calling the…
Ipton
  • 41
  • 1
  • 4
4
votes
2 answers

How to call spring api from frontend in kubernetes

I am trying to create a Kubernetes application in which, I have created one pod and service for backend(spring boot microservice) & frontend pod and a loadbalancer service. I wanted to know how would I call the backend API from frontend pod in…
4
votes
1 answer

Bluemix toolchain export & import

If I have created a bluemix toolchain through UI, how can I export that. I see there's an option to create a toolchain from a template described in yml files. But how can I get these yml files for an existing toolchain created using UI. Thanks
jeet
  • 629
  • 1
  • 4
  • 15
4
votes
1 answer

cloudfoundry/staticfile-buildpack static web page failing to deploy on BlueMix Devops

I have a simple static web site project on GitHub. I've created a pipeline that does a "Simple" build and deploy. The deploy log file shows the following "less than informative" error: Preparing to start the job... Cloning the 'master' branch from…
Mike Storey
  • 1,029
  • 3
  • 11
  • 21
3
votes
1 answer

Odata results displaying user id values under certain columns instead of usernames when data imported into excel from devops?

I imported certain Workitems data from my Devops project into excel using Odata queries. In that data under certain columns for eg: AssignedToUserSK its showing the user id values like this 06ea0e70-432d-4315-8ffd-87706966a7b6 Instead of this i…
3
votes
4 answers

DevOPS with Azure Data Factory

I have created Azure Data Factory with Copy Activity using C# and Azure SDK. How can deploy it using CI/CD ? Any URL or link will help
NSS
  • 1,835
  • 2
  • 29
  • 66
2
votes
2 answers

How to start previous successful release automatically in Devops/VSTS

If the current release has failed and how to run the previous successful release automatically? Ex: If A(Current release) has failed then automatically trigger B(Previous success release) release. Trigger from another release definition.
1
2 3
9 10