8,122 questions
-1
votes
0
answers
23
views
How to expose an NGINX Gateway Fabric Gateway to an external web proxy? [closed]
I have StatefulSets (frontend-ss and backend-ss) with corresponding Services in my Kubernetes cluster:
apiVersion: v1
kind: Service
metadata:
name: backend-service
labels:
app: backend-ss
...
-4
votes
1
answer
46
views
Can we achieve assigning roles and listing for multiple accounts using Native Terraform approach for AWS which is suitable for dyanmic too?
using Management account first i need to list all child accounts and i need to create an IAM role and IAM Trust policy with read only access to all child accounts through terraform and all the read ...
Best practices
0
votes
1
replies
46
views
Doing password rotation with spring-boot
I'm a DevOps engineer trying to implement password rotation for multiple services, some are Python, some Node but most are Kotlin and are using spring-boot, Our passwords are encrypted outside AWS and ...
-2
votes
0
answers
41
views
VS Code: Is the yaml red hat plugin not working correctly with helm? [closed]
I'm using VS Code to work with Kubernetes and Helm YAML files. I have the Red Hat plugin installed. Everything was fine until today. I always had simple files, but today I opened a file with if/else/...
-5
votes
0
answers
48
views
sonar scanner not working says its not a file or directory | sonarqube setup on local VM [closed]
I am learning CI/CD pipeline I made a custom Bitbucket runner on my local VMware-based VM and i set the socarqube server and scanner both on the VM but still it's not working it says it's not a file ...
Best practices
0
votes
1
replies
45
views
How do you handle CI/CD for APIs? I’m stuck on how setups with multiple local/staging/prod fit together
We built a CI/CD monorepo -- it makes intuitive sense with local/staging/prod. You push small commits and it auto-deploys. That makes sense when you just have that one pipeline for one app.
But now as ...
Advice
0
votes
2
replies
60
views
Azure DevOps sort list by state but not alphabetically
We have a list of states that we use and this is the preferred order of those states for our business:
New
Ready for Development
In Progress
Code Review
Testing
Stakeholder Approval
Ready for ...
Best practices
0
votes
1
replies
44
views
Conditional Run-Time Approval at Azure DevOps
As the title says: I need a job with an approval that is only executed if a runtime variable has a specific value.
After reading the docs, it seems like this is not possible, as the approvals are ...
0
votes
1
answer
58
views
I’m not sure how to configure the OWASP plugin in Jenkins
In Jenkins, I'm using the OWASP plugin, but I keep getting the error: ERROR: Couldn’t find any executable in 'null'.
stage('Dependency-Check') {
steps {
dir("${...
2
votes
1
answer
65
views
Azure DevOps “File Path” PowerShell task fails with “MissingEndCurlyBrace” but script parses and runs fine locally and as inline steps
Environment
Azure DevOps Classic UI
Task: PowerShell@2 (Windows PowerShell, not pwsh)
Agent: Windows (Microsoft-hosted and self-hosted both repro)
PowerShell version: Windows PowerShell 5.1
Script ...
0
votes
1
answer
42
views
GitLab Docker component usage
I'm trying to build a GitLab pipeline that calls a Docker component and does the Docker build, scan, and push automatically.
My pipeline structure is as below.
default:
tags:
- eks-lnx-prd
...
1
vote
1
answer
137
views
Docker logs taking 56gb of my server space
I recently experienced outage in my service as the server could no longer handle any traffic there were no memory available for the server to use. Figured Docker logs in /snap/docker/common/var-*/...
1
vote
1
answer
340
views
Alembic migrations autogenerate with Docker Compose workflow
I am developing a FastAPI project and using SQLAlchemy and Alembic. I'm running everything in Docker containers with Docker Compose. Now, I'm worried about something. I would like to take advantage of ...
2
votes
3
answers
189
views
azure devops pipeline retryCountOnTaskFailure, environment variable?
Is there a count variable available to the job/environment such that on retry I could sleep for a minute to hope whatever network traffic caused the failure has time to pass? Something like:
if ($env:...
2
votes
1
answer
114
views
How do I increment SemVer per commit using gitversion?
When using gitversion (the latest, v6.*) in a github action, is the SemVer supposed to increase by 1 at the end each commit? I thought it was from what I was reading, but I never see it happen. for ...