Documentation/Help for your platform
I've been looking for a good documentation platform for my SaaS product. I came across Docy theme for WordPress BookStack and ReType. Are there other tried, tested options you all work with today? Please share, thanks so much!
https://redd.it/13dvfzb
@r_devops
I've been looking for a good documentation platform for my SaaS product. I came across Docy theme for WordPress BookStack and ReType. Are there other tried, tested options you all work with today? Please share, thanks so much!
https://redd.it/13dvfzb
@r_devops
Reddit
r/devops on Reddit: Documentation/Help for your platform
Posted by u/Inevitable_Abies_777 - No votes and no comments
OneUptime: Open Source StatusPage.io alternative that you can self-host.
I'm Simon, I'm the OSS contributor to OneUptime (https://github.com/oneuptime/oneuptime) . It's an open-source alternative to StausPage.io. We're working on adding APM functionalities to it to make it closer to an open-source alternative to data dog. It's 100% free and you can self-host it on your VM / server.
Let me know what you think! Happy to hear early feedback and make the tool better.
https://redd.it/13dzh5n
@r_devops
I'm Simon, I'm the OSS contributor to OneUptime (https://github.com/oneuptime/oneuptime) . It's an open-source alternative to StausPage.io. We're working on adding APM functionalities to it to make it closer to an open-source alternative to data dog. It's 100% free and you can self-host it on your VM / server.
Let me know what you think! Happy to hear early feedback and make the tool better.
https://redd.it/13dzh5n
@r_devops
GitHub
GitHub - OneUptime/oneuptime: Complete open-source monitoring and observability platform.
Complete open-source monitoring and observability platform. - OneUptime/oneuptime
GitHub actions top alternatives
Due to the current state of GitHub I’m considering moving away from actions.
These are my top alternatives please share yours:
1. circleCI
2. GitLab
3. Travis CI
https://redd.it/13dvu0n
@r_devops
Due to the current state of GitHub I’m considering moving away from actions.
These are my top alternatives please share yours:
1. circleCI
2. GitLab
3. Travis CI
https://redd.it/13dvu0n
@r_devops
Reddit
r/devops on Reddit: GitHub actions top alternatives
Posted by u/libert-y - 4 votes and 18 comments
Mixing infrastructure provisioning and configuration
I am trying to build a SaaS service where for every tenant I need to spin up some infrastructure and configure it, and would appreciate some help on how to chain those things. I would like the trigger for a new tenant spin up to be as simple as a new line in a file in a git repo if possible.
To keep things simple, let’s say that my tenant infra is an RDA instance and an ASG+EC2 running a Java app. I want to configure my app to use a non-master DB user for least privilege and create the schema.
My first thought was to do this all in terraform (I am already using spacelift for some other infra things) but the creation of the applicational user and tables in the DB doesn’t feel right in terraform, so I am now having trouble designing the best way to chain these things (RDS+db setup+EC2) so that ideally the “new tenant” trigger is still super simple.
Splitting EC2 into an infra step and a “deployment” step I guess could help, but with an ASG there doesn’t seem to be room for a deployment phase “later” since the launch template is defined when the ASG is set up.
I am quite new to this space, feel free to completely destroy my assumptions:)
https://redd.it/13e3nm1
@r_devops
I am trying to build a SaaS service where for every tenant I need to spin up some infrastructure and configure it, and would appreciate some help on how to chain those things. I would like the trigger for a new tenant spin up to be as simple as a new line in a file in a git repo if possible.
To keep things simple, let’s say that my tenant infra is an RDA instance and an ASG+EC2 running a Java app. I want to configure my app to use a non-master DB user for least privilege and create the schema.
My first thought was to do this all in terraform (I am already using spacelift for some other infra things) but the creation of the applicational user and tables in the DB doesn’t feel right in terraform, so I am now having trouble designing the best way to chain these things (RDS+db setup+EC2) so that ideally the “new tenant” trigger is still super simple.
Splitting EC2 into an infra step and a “deployment” step I guess could help, but with an ASG there doesn’t seem to be room for a deployment phase “later” since the launch template is defined when the ASG is set up.
I am quite new to this space, feel free to completely destroy my assumptions:)
https://redd.it/13e3nm1
@r_devops
Reddit
r/devops on Reddit: Mixing infrastructure provisioning and configuration
Posted by u/distrustingwaffle - No votes and no comments
GitHub vs Gitlab
My team moved away from GitHub back before GitHub Actions was a thing after seeing GitlabCI in action.
I am pretty happy with Gitlab, and after Microsoft bought GitHub, I haven't really kept up with it to see if it has gained/kept feature parity with Gitlab.
With all the outages going on at GitHub, I began to wonder: why are DevOps people still using it? Is it some killer feature I am out of the loop on, or is it mainly organizational inertia driving the decision to stay on it?
https://redd.it/13e4eoj
@r_devops
My team moved away from GitHub back before GitHub Actions was a thing after seeing GitlabCI in action.
I am pretty happy with Gitlab, and after Microsoft bought GitHub, I haven't really kept up with it to see if it has gained/kept feature parity with Gitlab.
With all the outages going on at GitHub, I began to wonder: why are DevOps people still using it? Is it some killer feature I am out of the loop on, or is it mainly organizational inertia driving the decision to stay on it?
https://redd.it/13e4eoj
@r_devops
Reddit
r/devops on Reddit: GitHub vs Gitlab
Posted by u/Expensive_Finance_20 - No votes and 1 comment
What are the best tracing tools for microservices?
This article covers some of the best options - curious to know if anything is missing from this list.
https://redd.it/13e404b
@r_devops
This article covers some of the best options - curious to know if anything is missing from this list.
https://redd.it/13e404b
@r_devops
Medium
7 Best Tracing Tools for Microservices
Decide The Best Tracing Tools For Your Microservices Architecture
AWS WAF and SQLiMatchStatement
I'm working on some WAF rules that should be blocking SQL injection attempts, but for some reason they don't work with form input data (application/x-www-form-urlencoded). We're using the match type "Contains SQL injection attacks" vs writing our own.
The website uses a basic html form to post data to an endpoint behind the WAF. The form takes basic data (first name, last name, address, etc) with ~8 fields total.
If I input SQL injection in any of the first 3 fields (ex:
If I enter the injection string in any of the other fields, the WAF ignores it and returns a 200 status.
Ex:
200:
404:
I can't find any documentation on how the match type works beyond a very basic overview. I suspect this is to prevent people from trying to circumvent it. But it makes no sense to me why only the first 3 fields of the form input are checked.
Has anyone encountered this before? Is there some trick to checking form data for SQLi, or at least better documentation on what is being blocked?
https://redd.it/13dxx6p
@r_devops
I'm working on some WAF rules that should be blocking SQL injection attempts, but for some reason they don't work with form input data (application/x-www-form-urlencoded). We're using the match type "Contains SQL injection attacks" vs writing our own.
The website uses a basic html form to post data to an endpoint behind the WAF. The form takes basic data (first name, last name, address, etc) with ~8 fields total.
If I input SQL injection in any of the first 3 fields (ex:
SELECT * FROM INFORMATION_SCHEMA;--) the WAF correctly returns a 404. If I enter the injection string in any of the other fields, the WAF ignores it and returns a 200 status.
Ex:
200:
curl 'https://local.test' --data-raw 'A=1;B=2;C=SELECT * FROM INFORMATION_SCHEMA;--' 404:
curl 'https://local.test' --data-raw 'A=1;B=2;C=3;D=SELECT * FROM INFORMATION_SCHEMA;--' I can't find any documentation on how the match type works beyond a very basic overview. I suspect this is to prevent people from trying to circumvent it. But it makes no sense to me why only the first 3 fields of the form input are checked.
Has anyone encountered this before? Is there some trick to checking form data for SQLi, or at least better documentation on what is being blocked?
https://redd.it/13dxx6p
@r_devops
Reddit
r/devops on Reddit: AWS WAF and SQLiMatchStatement
Posted by u/Toast42 - 1 vote and 3 comments
Should I continue in DevOps?
So, I'm about to finish a two-year apprenticeship in a large company. I've been working as a DevOps there, and I'm wondering if I should continue in this field. For context, I'm over 30 years old, and I made a late career change. I only started working in the IT industry about three years ago, roughly, and it has always been through apprenticeships. I have primarily a networking and systems-oriented background.
But in my current job, even after almost two years, I still need help with certain topics. The infrastructure is very complex, and I still make mistakes or don't know where to turn to (we're talking about a company with over 1000 employees). Even after one year of apprenticeship, some of my colleagues (not all of them) complained about my lack of autonomy.
However, I do have autonomy, I understand the tools being used, even though I occasionally make coding mistakes which are becoming rarer. Where I have questions is primarily about how a specific service works, and since I don't have much knowledge in development, I also have some inquiries at that level.
In comparison, another employee who was an apprentice before me for six months and has been hired since is doing much better. However, he has a development background and many years of experience in that field. But he is constantly used as an example compared to me, to tell me that I'm not progressing fast enough.
I enjoy DevOps, and I really like creating infrastructure as code, but I'm wondering if I should continue in this path considering the feedback I've been receiving. To be honest, I mostly feel that some of my colleagues are being unfair, and that it's normal for an apprentice to have questions and need guidance on certain topics, even after almost 2 years. Some other colleagues have confirmed this viewpoint.
But perhaps after 2 years, all apprentices in the world already have complete autonomy. If that's the case, then maybe this sector is not where I belong. What do you think?
( I apologize if there are any language errors, English is not my native language.)
https://redd.it/13dig37
@r_devops
So, I'm about to finish a two-year apprenticeship in a large company. I've been working as a DevOps there, and I'm wondering if I should continue in this field. For context, I'm over 30 years old, and I made a late career change. I only started working in the IT industry about three years ago, roughly, and it has always been through apprenticeships. I have primarily a networking and systems-oriented background.
But in my current job, even after almost two years, I still need help with certain topics. The infrastructure is very complex, and I still make mistakes or don't know where to turn to (we're talking about a company with over 1000 employees). Even after one year of apprenticeship, some of my colleagues (not all of them) complained about my lack of autonomy.
However, I do have autonomy, I understand the tools being used, even though I occasionally make coding mistakes which are becoming rarer. Where I have questions is primarily about how a specific service works, and since I don't have much knowledge in development, I also have some inquiries at that level.
In comparison, another employee who was an apprentice before me for six months and has been hired since is doing much better. However, he has a development background and many years of experience in that field. But he is constantly used as an example compared to me, to tell me that I'm not progressing fast enough.
I enjoy DevOps, and I really like creating infrastructure as code, but I'm wondering if I should continue in this path considering the feedback I've been receiving. To be honest, I mostly feel that some of my colleagues are being unfair, and that it's normal for an apprentice to have questions and need guidance on certain topics, even after almost 2 years. Some other colleagues have confirmed this viewpoint.
But perhaps after 2 years, all apprentices in the world already have complete autonomy. If that's the case, then maybe this sector is not where I belong. What do you think?
( I apologize if there are any language errors, English is not my native language.)
https://redd.it/13dig37
@r_devops
Reddit
r/devops on Reddit: Should I continue in DevOps?
Posted by u/M00lefr33t - 2 votes and 12 comments
Branching Strategy for multiple APIGW endpoints split in different resources
Hi Everyone, I'm looking for a good way of Branching strategy in order to maintain the liason between APIGW split in different resources containing several endpoints. We are using CodePipeline to orchestatte the CodeCommit repos, CodBuild and CodeFormation. The solution involves APiGW, Lambdas pointing to a specific ECR images. I'd appreciate any recommendations for the Branching strategy. Thanks. Kind regards
https://redd.it/13eaz54
@r_devops
Hi Everyone, I'm looking for a good way of Branching strategy in order to maintain the liason between APIGW split in different resources containing several endpoints. We are using CodePipeline to orchestatte the CodeCommit repos, CodBuild and CodeFormation. The solution involves APiGW, Lambdas pointing to a specific ECR images. I'd appreciate any recommendations for the Branching strategy. Thanks. Kind regards
https://redd.it/13eaz54
@r_devops
Reddit
r/devops on Reddit: Branching Strategy for multiple APIGW endpoints split in different resources
Posted by u/Gr3gorius - No votes and no comments
Suggestions for improvements to the environment
Hey people!
I currently work in a government agency and am solely responsible for the DevSecOps area in an environment that is migrating from monolithic applications to microservices.
We have two Kubernetes clusters, one for production and one for development. Both are single node.
I'm wanting to migrate each of them to at least have a control plane and two workers.
Allied to this, I also have to define the monitoring tools. I thought about using ELK stack.
Also wanted to use a management tool. We have RHEL licenses but not Openshift, so I'm considering using Rancher.
​
I would like your opinion on cluster architecture and management tools.
https://redd.it/13d1eg6
@r_devops
Hey people!
I currently work in a government agency and am solely responsible for the DevSecOps area in an environment that is migrating from monolithic applications to microservices.
We have two Kubernetes clusters, one for production and one for development. Both are single node.
I'm wanting to migrate each of them to at least have a control plane and two workers.
Allied to this, I also have to define the monitoring tools. I thought about using ELK stack.
Also wanted to use a management tool. We have RHEL licenses but not Openshift, so I'm considering using Rancher.
​
I would like your opinion on cluster architecture and management tools.
https://redd.it/13d1eg6
@r_devops
Reddit
r/devops on Reddit: Suggestions for improvements to the environment
Posted by u/heathzz - 1 vote and 4 comments
What DevOps tool you wish that existed? I'll create it for free!
I'm not kidding. I have enough DevOps and programming experience, in addition to time and will.
I have recently tried to create a cross-platform cloud management tool accepting any feature requests but it didn't gain any traction even after open-sourcing it and making it as easy as possible to build and understand.
So I'm thinking now: maybe that is not the tool that everybody needs! Maybe they need something like a Kafka manager (with features that current ones don't have), a real-time messages editor/monitor, a tracing tool, a deployment tool, etc...
And you might ask: why am I doing that? Well, I'm a senior dev and I just don't like the way my career is growing. It is growing at the "normal" pace, but I'm trying to find a way into entrepreneurship. So my plan for this app to be free + open-source for the first two years and then I'll start adding enterprise features for paid customers complete with source-code, while still maintaining the free version (I promise!). So let the ideas come!
https://redd.it/13ed4ie
@r_devops
I'm not kidding. I have enough DevOps and programming experience, in addition to time and will.
I have recently tried to create a cross-platform cloud management tool accepting any feature requests but it didn't gain any traction even after open-sourcing it and making it as easy as possible to build and understand.
So I'm thinking now: maybe that is not the tool that everybody needs! Maybe they need something like a Kafka manager (with features that current ones don't have), a real-time messages editor/monitor, a tracing tool, a deployment tool, etc...
And you might ask: why am I doing that? Well, I'm a senior dev and I just don't like the way my career is growing. It is growing at the "normal" pace, but I'm trying to find a way into entrepreneurship. So my plan for this app to be free + open-source for the first two years and then I'll start adding enterprise features for paid customers complete with source-code, while still maintaining the free version (I promise!). So let the ideas come!
https://redd.it/13ed4ie
@r_devops
Reddit
r/devops on Reddit: What DevOps tool you wish that existed? I'll create it for free!
Posted by u/ahmedyarub - No votes and 2 comments
Has anyone switched to a product team from devops? What were your reasons and how are you liking it?
I'm curious if any others have come from building products as a SWE to DevOps, and then gone back. What did you like about each role? What didn't you like?
​
For me it feels like product work is much more flexible with the implementation details, and creating/scaling infra or setting up monitoring and alerts is very rigid, there's not much room for creativity, however, there are moments of pure automation joy when everything works and needs little maintenance.
https://redd.it/13eesqi
@r_devops
I'm curious if any others have come from building products as a SWE to DevOps, and then gone back. What did you like about each role? What didn't you like?
​
For me it feels like product work is much more flexible with the implementation details, and creating/scaling infra or setting up monitoring and alerts is very rigid, there's not much room for creativity, however, there are moments of pure automation joy when everything works and needs little maintenance.
https://redd.it/13eesqi
@r_devops
Reddit
r/devops on Reddit: Has anyone switched to a product team from devops? What were your reasons and how are you liking it?
Posted by u/Paramourn2 - No votes and no comments
How do you deploy multiple preview environments across multiple repos and branches?
Hi. Currently working on creating a better way of managing our preview environments.
Our current setup is having 10 preview environments which can be set to a branch on demand, using a web-ui (Forge). However, as this is kinda unscalable and not dev-friendly, I am working on a way to automate this using Github branches and automatic deployment to AWS.
So, when someone creates a PR on
Does this make sense?
I basically have every building block already done, except for this part - the "workflow" part as we call it.
Would love some insight into this! If you need more info on specifics in order to give a meaningful answer, please let me know!
https://redd.it/13efp40
@r_devops
Hi. Currently working on creating a better way of managing our preview environments.
Our current setup is having 10 preview environments which can be set to a branch on demand, using a web-ui (Forge). However, as this is kinda unscalable and not dev-friendly, I am working on a way to automate this using Github branches and automatic deployment to AWS.
So, when someone creates a PR on
frontend, I will deploy everything needed to AWS (like an S3 bucket). However, I also want it to "connect" to its own, isolated, API (say, an EC2 instance). This seems simple, but we ALSO want to be able to select on which branch that API is checked out, as our devs' workflow is often that they work on api and frontend simultaneously, so we can't just make their frontend PR-deployment connect to api-master.Does this make sense?
I basically have every building block already done, except for this part - the "workflow" part as we call it.
Would love some insight into this! If you need more info on specifics in order to give a meaningful answer, please let me know!
https://redd.it/13efp40
@r_devops
Reddit
r/devops on Reddit: How do you deploy multiple preview environments across multiple repos and branches?
Posted by u/_-__-__-__- - No votes and no comments
I had to do mandatory military service which wasted a year of my life (had no access to a smartphone or internet). Have a career fair coming up but I don't even know what kind of jobs to apply for.
######My resume
----
After I graduated from university, I did 13 months of military service, training police officials with my IT skills. No phone or internet access and only a week of vacation monthly. Tried to study but limited access made it unfeasible, so I postponed it till I was done with my service.
Now, I'm currently following the "devops roadmap" that recommends foundational knowledge in Python, Linux, Networking, AWS, and IaaC. I have a solid grasp in python and linux (studied for the RHCSA), and I'm now prepping for the AWS SAA cert while grinding leetcode.
Questions:
1. What kind of jobs do I even apply for? I don't think I'm ready for a developer position. And yet, I don't have the necessary experience for a system administration one either.
2. Should I continue learning the rest of the roadmap?
https://redd.it/13egfeu
@r_devops
######My resume
----
After I graduated from university, I did 13 months of military service, training police officials with my IT skills. No phone or internet access and only a week of vacation monthly. Tried to study but limited access made it unfeasible, so I postponed it till I was done with my service.
Now, I'm currently following the "devops roadmap" that recommends foundational knowledge in Python, Linux, Networking, AWS, and IaaC. I have a solid grasp in python and linux (studied for the RHCSA), and I'm now prepping for the AWS SAA cert while grinding leetcode.
Questions:
1. What kind of jobs do I even apply for? I don't think I'm ready for a developer position. And yet, I don't have the necessary experience for a system administration one either.
2. Should I continue learning the rest of the roadmap?
https://redd.it/13egfeu
@r_devops
DevOps to ‘DevOps’
Yo Dev-Ops cats.
I hope some of you can hear me out and maybe relate to me a little. And if possible offer some advice, or encouragement.
When I got into the industry I started as a software developer. I was doing C#, a little javascript, and a little Java. I was new and young and it was awesome. I could write run-on sentences for days describing how happy it made me. It’s like a toddler describing Christmas to an alien.
Eventually I started learning the Ops side of the project I was on. That was exciting. It was new technology, it was meaningful to my project. I could see a direct impact of what the Ops had on the Dev work. And why they would go hand in hand, praise the DevOps!
Here’s where the storm clouds roll in. Once I learned these Ops skills, like CI/CD, Docker, Docker-Compose, other sys admin things, I was sort of pulled. The company said “this is great! We have a guy who understands this new (ish) technology and can reliably use it for a project!” So they set me loose. I was now doing Ops for every project it felt like. I thought wow this is interesting. But boy did I burn out fast. I didn’t realize that I lost all of my passion and drive because I was missing real DevOps. Not ‘devops’.
I was missing having a meaningful relationship with the project that I was working on. I missed doing Ops for something I was working on. Not Ops for someone else’s problem. This model of taking real budding DevOps programmers and making them ‘devops’ or really just ops guys can’t be something only I went through.
I just don’t know what to do. I feel like I had so much momentum as a developer(and originally more of true DevOps programmer). But I feel like a baby who had his lollipop taken away. Personally I’m tired of feeling bad for myself. I’m going to find a way to break back into a real DevOps role. But I’d appreciate any thoughts, advice, relating to’s, or even ‘this is the wrong place for this bud’.
As for the title I describe this as being a DevOps guy put into a ‘devops’ role looking to return to the DevOps guy. Like Star Wars:
Star Wars 4: A New DevOps
Star Wars 5: Empire ‘devops’ <- I’m here
Star Wars 6: Return of the Dev-Ops
Help a DevOps guy out.
P.S. on mobile, sorry for format issues. Plz comment and I can fix in the morning. Been up all night with an existential crisis (this is it this is the existential crisis).
Edit 1-3: formatting
https://redd.it/13ei26p
@r_devops
Yo Dev-Ops cats.
I hope some of you can hear me out and maybe relate to me a little. And if possible offer some advice, or encouragement.
When I got into the industry I started as a software developer. I was doing C#, a little javascript, and a little Java. I was new and young and it was awesome. I could write run-on sentences for days describing how happy it made me. It’s like a toddler describing Christmas to an alien.
Eventually I started learning the Ops side of the project I was on. That was exciting. It was new technology, it was meaningful to my project. I could see a direct impact of what the Ops had on the Dev work. And why they would go hand in hand, praise the DevOps!
Here’s where the storm clouds roll in. Once I learned these Ops skills, like CI/CD, Docker, Docker-Compose, other sys admin things, I was sort of pulled. The company said “this is great! We have a guy who understands this new (ish) technology and can reliably use it for a project!” So they set me loose. I was now doing Ops for every project it felt like. I thought wow this is interesting. But boy did I burn out fast. I didn’t realize that I lost all of my passion and drive because I was missing real DevOps. Not ‘devops’.
I was missing having a meaningful relationship with the project that I was working on. I missed doing Ops for something I was working on. Not Ops for someone else’s problem. This model of taking real budding DevOps programmers and making them ‘devops’ or really just ops guys can’t be something only I went through.
I just don’t know what to do. I feel like I had so much momentum as a developer(and originally more of true DevOps programmer). But I feel like a baby who had his lollipop taken away. Personally I’m tired of feeling bad for myself. I’m going to find a way to break back into a real DevOps role. But I’d appreciate any thoughts, advice, relating to’s, or even ‘this is the wrong place for this bud’.
As for the title I describe this as being a DevOps guy put into a ‘devops’ role looking to return to the DevOps guy. Like Star Wars:
Star Wars 4: A New DevOps
Star Wars 5: Empire ‘devops’ <- I’m here
Star Wars 6: Return of the Dev-Ops
Help a DevOps guy out.
P.S. on mobile, sorry for format issues. Plz comment and I can fix in the morning. Been up all night with an existential crisis (this is it this is the existential crisis).
Edit 1-3: formatting
https://redd.it/13ei26p
@r_devops
Reddit
r/devops on Reddit: DevOps to ‘DevOps’
Posted by u/Masterboog - No votes and no comments
Digest #102: Are Terraform’s days numbered? - Same argument that language X may die b/c of new language Y
Its not apples to apples. But these headlines are stupid for a devops bulletin, misleading to some that may not have a grasp on what it means for them, if they are just getting used to TF.
Just b/c Prime goes Monolith, after rapid development and exhausting, enough, mitigation of performance to realize, that its time.
TF doesn't only deploy/use micro services, lambda, step functions and containers.
</rant> I guess. You see this so often on subs like r/AskProgramming
https://redd.it/13d71dy
@r_devops
Its not apples to apples. But these headlines are stupid for a devops bulletin, misleading to some that may not have a grasp on what it means for them, if they are just getting used to TF.
Just b/c Prime goes Monolith, after rapid development and exhausting, enough, mitigation of performance to realize, that its time.
TF doesn't only deploy/use micro services, lambda, step functions and containers.
</rant> I guess. You see this so often on subs like r/AskProgramming
https://redd.it/13d71dy
@r_devops
Reddit
r/devops on Reddit: Digest #102: Are Terraform’s days numbered? - Same argument that language X may die b/c of new language Y
Posted by u/ekydfejj - No votes and 3 comments
For a career in DevOps what certification should I acquire?
Hello,
I am new to the field of DevOps. I have AWS Cloud Practitioner certificate and am working on some hands on project with help of ACloudGuru training platform. No professional experience though.
At associate level, what certificate should I apply for Associate Developer Or Associate SysOps Administrator or Associate Solution Architect? Which is more in demand? My company may sponsor the certification exam if I can get it before July. Hence, the hurry 😅
Any other suggestions for a beginner in Aws and DevOps are welcome.
Thanks in advance.
edit: help me choose the best associate level certificate
https://redd.it/13elq9u
@r_devops
Hello,
I am new to the field of DevOps. I have AWS Cloud Practitioner certificate and am working on some hands on project with help of ACloudGuru training platform. No professional experience though.
At associate level, what certificate should I apply for Associate Developer Or Associate SysOps Administrator or Associate Solution Architect? Which is more in demand? My company may sponsor the certification exam if I can get it before July. Hence, the hurry 😅
Any other suggestions for a beginner in Aws and DevOps are welcome.
Thanks in advance.
edit: help me choose the best associate level certificate
https://redd.it/13elq9u
@r_devops
Reddit
r/devops on Reddit: For a career in DevOps what certification should I acquire?
Posted by u/Mima_m - No votes and 2 comments
Automate creation of Project Agent Pools (VMSS)
Hi all.
Has anyone managed to link up a scale set to a project agent pool via command line?
I have a pipeline that creates the gold image, adds that to a VMSS via Terraform but i would like to finish the workflow by having this scale set added to a scale set pool so they can be used within Devops on other projects. I have tried to google but come up short.
Thanks.
Below is a screenshot of what i am wanting to automate.
https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/media/scale-set-agents/create-agent-pool.png?view=azure-devops
https://redd.it/13en9sp
@r_devops
Hi all.
Has anyone managed to link up a scale set to a project agent pool via command line?
I have a pipeline that creates the gold image, adds that to a VMSS via Terraform but i would like to finish the workflow by having this scale set added to a scale set pool so they can be used within Devops on other projects. I have tried to google but come up short.
Thanks.
Below is a screenshot of what i am wanting to automate.
https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/media/scale-set-agents/create-agent-pool.png?view=azure-devops
https://redd.it/13en9sp
@r_devops
FYI: GitHub appears to be down at the moment (https://www.githubstatus.com/)
I'm getting HTTP 500s when viewing any repository on the site.
https://redd.it/13enp35
@r_devops
I'm getting HTTP 500s when viewing any repository on the site.
https://redd.it/13enp35
@r_devops
Githubstatus
GitHub Status
Welcome to GitHub's home for real-time and historical data on system performance.
3 straight days of degraded github performance
That's it, I'm bring back the Travis deploy scripts. Suddenly Travis' 90% uptime seems amazing.
https://redd.it/13enths
@r_devops
That's it, I'm bring back the Travis deploy scripts. Suddenly Travis' 90% uptime seems amazing.
https://redd.it/13enths
@r_devops
Reddit
r/devops on Reddit: 3 straight days of degraded github performance
Posted by u/herereadthis - No votes and 3 comments
Leaving job after 6 months
This place is a total mess. 0 documentation, 0 onboarding, 0 work life balance. They completely lied to me during the interview process and their job description was entirely misleading. I've stuck around so far hoping that it's going to get better, but it's only gotten worse. There is 0 work life balance so I'm looking at new jobs.
What do I put on my resume for this place? I've managed to learn a few of their tools here and onboarded myself since their process was entirely non existent but not much more than that...
https://redd.it/13eph8w
@r_devops
This place is a total mess. 0 documentation, 0 onboarding, 0 work life balance. They completely lied to me during the interview process and their job description was entirely misleading. I've stuck around so far hoping that it's going to get better, but it's only gotten worse. There is 0 work life balance so I'm looking at new jobs.
What do I put on my resume for this place? I've managed to learn a few of their tools here and onboarded myself since their process was entirely non existent but not much more than that...
https://redd.it/13eph8w
@r_devops
Reddit
r/devops on Reddit: Leaving job after 6 months
Posted by u/Obj_Sea - No votes and 6 comments