Prometheus Push Architecture
I know Prom is extremely opinionated and only does pulls. That's fine, I understand where they're coming from.
But I have some highly mobile devices (think Raspberry Pis or phones) that may not be connected at all times. So whatever application they're running, metrics can't be collected at all times.
Another use case might be egress-only networks. So if you can't set up VPNs to your edge devices, they can only push out to a well known Prom endpoint.
Therefore I want to push metrics (and queued metrics) instead.
Is pushgateway still the way to go? Or are Prometheus "extensions" like Thanos?
https://redd.it/11t3yyv
@r_devops
I know Prom is extremely opinionated and only does pulls. That's fine, I understand where they're coming from.
But I have some highly mobile devices (think Raspberry Pis or phones) that may not be connected at all times. So whatever application they're running, metrics can't be collected at all times.
Another use case might be egress-only networks. So if you can't set up VPNs to your edge devices, they can only push out to a well known Prom endpoint.
Therefore I want to push metrics (and queued metrics) instead.
Is pushgateway still the way to go? Or are Prometheus "extensions" like Thanos?
https://redd.it/11t3yyv
@r_devops
Reddit
r/devops on Reddit: Prometheus Push Architecture
Posted by u/zachlab - No votes and 3 comments
How to run jenkins pipeline jobs in parallel which call the same downstream job
I am a beginner to jenkins and making groovy scripts for pipelines, I want to trigger a downstream pipeline in parallel for all the files inside a folder given by the user... below is the sample code I wrote:-
​
def GLOBAL_RELEASE_NUMBER
def GLOBAL_BUILD_NUMBER
pipeline {
agent { label 'centos7-itest' }
options {
timestamps()
buildDiscarder(
logRotator(
daysToKeepStr: '100'
)
)
ansiColor('xterm')
}
parameters {
//some parameters
}
environment {
// For python3
}
stages{
stage("setting environment") {
environment {
//setting up environment
}
steps {
script{
// deciding build number and release number
}
}
}
stage("Clone repo & replace variables & call my pipeline") {
steps {
withCredentials([
//credentials
]){
cleanWs()
deleteDir()
git branch: "${params.branch}", credentialsId: 'jenkins-user-key-vcs', url: '[email protected]:some_repo/devops.git '
script {
sizingFiles = []
def branches = [:]
def counter=0
if (params.sizing_directory.endsWith(".yaml")) {
sizingFiles.add(params.sizing_directory)
} else {
sh(
returnStdout: true,
script: "find ${params.sizing_directory} -type f -name '*.yaml'"
).trim().split('\n').each { sizingFile ->
sizingFiles.add(sizingFile)
}
}
for (def sizingFile in sizingFiles) {
echo "Processing ${sizingFile}"
sh """
sed -i 's/{{[[:space:]]*user[[:space:]]*}}/${params.test_user}/g;
s/{{[[:space:]]*owner[[:space:]]*}}/my_team/g;
s/{{[[:space:]]*dept[[:space:]]*}}/team/g;
s/{{[[:space:]]*task[[:space:]]*}}/sizing/g;
s/{{[[:space:]]*SoftwareVersion[[:space:]]*}}/$GLOBAL_RELEASE_NUMBER-b$GLOBAL_BUILD_NUMBER/g' ${sizingFile}
cat ${sizingFile}
"""
branches[counter] = {
stage('yb'){
build job: "Myteam/myPipeline",
wait: false,
parameters: [
text(name: 'sample_yaml', value: readFile(file: sizingFile)),
string(name: 'branch', value: "${params.branch}")
]
}
counter+=1
}
I am a beginner to jenkins and making groovy scripts for pipelines, I want to trigger a downstream pipeline in parallel for all the files inside a folder given by the user... below is the sample code I wrote:-
​
def GLOBAL_RELEASE_NUMBER
def GLOBAL_BUILD_NUMBER
pipeline {
agent { label 'centos7-itest' }
options {
timestamps()
buildDiscarder(
logRotator(
daysToKeepStr: '100'
)
)
ansiColor('xterm')
}
parameters {
//some parameters
}
environment {
// For python3
}
stages{
stage("setting environment") {
environment {
//setting up environment
}
steps {
script{
// deciding build number and release number
}
}
}
stage("Clone repo & replace variables & call my pipeline") {
steps {
withCredentials([
//credentials
]){
cleanWs()
deleteDir()
git branch: "${params.branch}", credentialsId: 'jenkins-user-key-vcs', url: '[email protected]:some_repo/devops.git '
script {
sizingFiles = []
def branches = [:]
def counter=0
if (params.sizing_directory.endsWith(".yaml")) {
sizingFiles.add(params.sizing_directory)
} else {
sh(
returnStdout: true,
script: "find ${params.sizing_directory} -type f -name '*.yaml'"
).trim().split('\n').each { sizingFile ->
sizingFiles.add(sizingFile)
}
}
for (def sizingFile in sizingFiles) {
echo "Processing ${sizingFile}"
sh """
sed -i 's/{{[[:space:]]*user[[:space:]]*}}/${params.test_user}/g;
s/{{[[:space:]]*owner[[:space:]]*}}/my_team/g;
s/{{[[:space:]]*dept[[:space:]]*}}/team/g;
s/{{[[:space:]]*task[[:space:]]*}}/sizing/g;
s/{{[[:space:]]*SoftwareVersion[[:space:]]*}}/$GLOBAL_RELEASE_NUMBER-b$GLOBAL_BUILD_NUMBER/g' ${sizingFile}
cat ${sizingFile}
"""
branches[counter] = {
stage('yb'){
build job: "Myteam/myPipeline",
wait: false,
parameters: [
text(name: 'sample_yaml', value: readFile(file: sizingFile)),
string(name: 'branch', value: "${params.branch}")
]
}
counter+=1
}
}
parallel branches
}
}
}
}
}
}
The issue is when I trigger this pipeline with a folder containing 2 yaml files, I notice that the the job is triggered for first file and first completes the job and then goes to the next file to run the job for this file. I want to run all the jobs in parallel hence I gave the "wait:false" for the individual jobs. Can someone point out if what I am doing wrong?
https://redd.it/11thwql
@r_devops
parallel branches
}
}
}
}
}
}
The issue is when I trigger this pipeline with a folder containing 2 yaml files, I notice that the the job is triggered for first file and first completes the job and then goes to the next file to run the job for this file. I want to run all the jobs in parallel hence I gave the "wait:false" for the individual jobs. Can someone point out if what I am doing wrong?
https://redd.it/11thwql
@r_devops
Reddit
r/devops on Reddit: How to run jenkins pipeline jobs in parallel which call the same downstream job
Posted by u/PerceptionGreen4566 - No votes and no comments
Devops interview types?
Hey fellow devops folks, what has been you interview type like? Take home assignment or some leetcode programming live session or drilling devops technical knowledge of various tools?
https://redd.it/11t3rp2
@r_devops
Hey fellow devops folks, what has been you interview type like? Take home assignment or some leetcode programming live session or drilling devops technical knowledge of various tools?
https://redd.it/11t3rp2
@r_devops
Reddit
r/devops on Reddit: Devops interview types?
Posted by u/tofumanboykid - 1 vote and 6 comments
Any alternative to Redshift for streaming data from Aurora for analytics?
Hey guys,
So we use Redash to run lot of analytics queries on Aurora and we are seeing its limitations now.
The obvious choice is to use Redshift since our DBs are AWS Aurora.
But was wondering if there is a better alternative to look for?
We are thinking BigQuery, ClickHouse and Snowflake.
Anybody has any experience with this?
Our requirements are:
* Connector for streaming data from Aurora. Ideally real-time.
* Connection with Redash
* Ruby ActiveRecord gem
BigQuery, Clickhouse and Redshift have ActiveRecord gems for connection, but Snowflake doesn't.
But Redshift seems the only option if we need real time streaming of data.
​
Thank you.
https://redd.it/11tjo1a
@r_devops
Hey guys,
So we use Redash to run lot of analytics queries on Aurora and we are seeing its limitations now.
The obvious choice is to use Redshift since our DBs are AWS Aurora.
But was wondering if there is a better alternative to look for?
We are thinking BigQuery, ClickHouse and Snowflake.
Anybody has any experience with this?
Our requirements are:
* Connector for streaming data from Aurora. Ideally real-time.
* Connection with Redash
* Ruby ActiveRecord gem
BigQuery, Clickhouse and Redshift have ActiveRecord gems for connection, but Snowflake doesn't.
But Redshift seems the only option if we need real time streaming of data.
​
Thank you.
https://redd.it/11tjo1a
@r_devops
Reddit
r/devops on Reddit: Any alternative to Redshift for streaming data from Aurora for analytics?
Posted by u/theBeeprApp - No votes and no comments
How often do you do deployments at your startup/company? A poll (version 2)
Just to get a feel for how DevOps/SRE culture has impacted the deployment frequency at various companies/startups for your PRODUCTION environment.
And just to clarify it means "how often do you deploy 1 particular selected component", not if you have one artifact and you need to deploy it to hundreds of prod environments.
​
Thank you very much for your answer!
View Poll
https://redd.it/11tktk3
@r_devops
Just to get a feel for how DevOps/SRE culture has impacted the deployment frequency at various companies/startups for your PRODUCTION environment.
And just to clarify it means "how often do you deploy 1 particular selected component", not if you have one artifact and you need to deploy it to hundreds of prod environments.
​
Thank you very much for your answer!
View Poll
https://redd.it/11tktk3
@r_devops
Reddit
r/devops on Reddit: How often do you do deployments at your startup/company? A poll (version 2)
Posted by u/Bubbly_Penalty6048 - No votes and no comments
Authentication of SQL Db in pipeline.
I am trying to deploy azure sql db using dacpac. I ran the deployment job but I need to authenticate sql db by setting authenticationType as connection string and I am using keyvault to store the connection string. Is there any other way to do authentication?
https://redd.it/11tlvc8
@r_devops
I am trying to deploy azure sql db using dacpac. I ran the deployment job but I need to authenticate sql db by setting authenticationType as connection string and I am using keyvault to store the connection string. Is there any other way to do authentication?
https://redd.it/11tlvc8
@r_devops
Reddit
r/devops on Reddit: Authentication of SQL Db in pipeline.
Posted by u/SreeksRee - No votes and no comments
Why You Can’t Find Anything in Your Monitoring Dashboards
Too often we run into an incident, jump to the dashboard, just to find ourselves drowning in endless data and unable to find what we need. This could be caused not just by the data overload, but also due to seeing too many or too few colors, inconsistent conventions or the lack of visual cues.
The dashboard needs to be designed in a way that allows users easily access and interpret the data. It requires more than the engineer mindset to do it right. Take these two guiding principles:
*When designing a dashboard,* ***think like a UX designer****, and* ***keep it simple****.*
Here are some guidelines for effective dashboard design:
* Understand your dashboard’s user persona and use case
* Utilize the right data visualizations
* Create clean layout with an intuitive flow
* Keep Consistency of the layout
* Correlate between different dashboards and views
* Annotate thresholds, alerts and events on the graph
* Overlay values on the same graph only when makes sense
See dashboard examples and more details on this guide: [https://medium.com/p/12fcc23d34c8](https://medium.com/p/12fcc23d34c8)
https://redd.it/11t3i0i
@r_devops
Too often we run into an incident, jump to the dashboard, just to find ourselves drowning in endless data and unable to find what we need. This could be caused not just by the data overload, but also due to seeing too many or too few colors, inconsistent conventions or the lack of visual cues.
The dashboard needs to be designed in a way that allows users easily access and interpret the data. It requires more than the engineer mindset to do it right. Take these two guiding principles:
*When designing a dashboard,* ***think like a UX designer****, and* ***keep it simple****.*
Here are some guidelines for effective dashboard design:
* Understand your dashboard’s user persona and use case
* Utilize the right data visualizations
* Create clean layout with an intuitive flow
* Keep Consistency of the layout
* Correlate between different dashboards and views
* Annotate thresholds, alerts and events on the graph
* Overlay values on the same graph only when makes sense
See dashboard examples and more details on this guide: [https://medium.com/p/12fcc23d34c8](https://medium.com/p/12fcc23d34c8)
https://redd.it/11t3i0i
@r_devops
Medium
Unreadable Metrics: Why You Can’t Find Anything in Your Monitoring Dashboards
A Guide to Effective Dashboard Design
Feedback needed: Will this help you?
Hi alL! I'm the growth PM at ngrok, and I've been working hard to make our product easier to use and understand for people testing and debugging web apps. As part of this, I'm working to expand our free tier, and have included webhook verification and OAuth.
​
My question for this group is, does webhook verification matter? We don't see a ton of usage but part of that was because it was in the paid plan. Is this something you care about? If not, why?
https://redd.it/11su2gg
@r_devops
Hi alL! I'm the growth PM at ngrok, and I've been working hard to make our product easier to use and understand for people testing and debugging web apps. As part of this, I'm working to expand our free tier, and have included webhook verification and OAuth.
​
My question for this group is, does webhook verification matter? We don't see a ton of usage but part of that was because it was in the paid plan. Is this something you care about? If not, why?
https://redd.it/11su2gg
@r_devops
Ngrok
Expanding ngrok's free plan with security in one line
We strive to take ingress off developers’ plates with our platform, and that requires making security-focused features accessible and easy to use. Today, I'm proud to announce an important step in that direction: we're adding our security features — OAuth…
is anyone using garden.io for Kubernetes development?
Hi, just wanted to ask if anyone of you has experience with introducing Garden.io at your company for Kubernetes development? Did it help with providing a better developer experience or speeding things up or improving overall developer satisfaction? Or why did you even introduced in first place?
Would appreciate any insights on garden.io. Thanks.
https://redd.it/11sydxp
@r_devops
Hi, just wanted to ask if anyone of you has experience with introducing Garden.io at your company for Kubernetes development? Did it help with providing a better developer experience or speeding things up or improving overall developer satisfaction? Or why did you even introduced in first place?
Would appreciate any insights on garden.io. Thanks.
https://redd.it/11sydxp
@r_devops
docs.garden.io
Welcome to Garden! | Garden Docs
Garden is a DevOps automation tool for developing and testing Kubernetes apps faster
Elasticsearch upgrade delimma
I am performing a rolling upgrade on our elastic search cluster from 7.6.2 to 7.16.2, there are total 3 nodes. Cordinator node is already updated. Should I keep the value of cluster.initialmasternodes as empty in elasticsearch.yml while upgrading or keep the values.
https://redd.it/11tqyk9
@r_devops
I am performing a rolling upgrade on our elastic search cluster from 7.6.2 to 7.16.2, there are total 3 nodes. Cordinator node is already updated. Should I keep the value of cluster.initialmasternodes as empty in elasticsearch.yml while upgrading or keep the values.
https://redd.it/11tqyk9
@r_devops
Reddit
r/devops on Reddit: Elasticsearch upgrade delimma
Posted by u/vishnujp12 - No votes and 1 comment
Folks on my team never want to have a "white boarding" session to review stories that I pick up...?
Some stories I pickup I'd like to dive a bit deeper with my colleagues before I start development. In the past folks would always be willing to jump on a call or meet in a room and start mocking out a potential architecture for automation / CICD... normal *right*?
Every person on this new team I'm on requires a PR before they'll review/consult against the work increment. This seems counterintuitive as the development has already been through multiple phases.
Yea, we can do this in grooming, but that's typically for 10-15mins on a story, and you're not positive if that particular story will even be assigned to you.
Is this normal practice?
https://redd.it/11ts7mo
@r_devops
Some stories I pickup I'd like to dive a bit deeper with my colleagues before I start development. In the past folks would always be willing to jump on a call or meet in a room and start mocking out a potential architecture for automation / CICD... normal *right*?
Every person on this new team I'm on requires a PR before they'll review/consult against the work increment. This seems counterintuitive as the development has already been through multiple phases.
Yea, we can do this in grooming, but that's typically for 10-15mins on a story, and you're not positive if that particular story will even be assigned to you.
Is this normal practice?
https://redd.it/11ts7mo
@r_devops
Reddit
r/devops on Reddit: Folks on my team never want to have a "white boarding" session to review stories that I pick up...?
Posted by u/swiftsparky - No votes and 1 comment
How do you handle subnet reservation ?
looking for a better way to handle subnet allocation rather than rely on a spreadsheet. would like it to auto update if possible .
​
at the moment we have subnets reserverd for failovers , but there is no record of them in the azure portal , as they dont exist until the point of deployment , ant the moment this is handles through the traditional spreadsheet , which sucks
​
so who has a better way?
https://redd.it/11tqrv1
@r_devops
looking for a better way to handle subnet allocation rather than rely on a spreadsheet. would like it to auto update if possible .
​
at the moment we have subnets reserverd for failovers , but there is no record of them in the azure portal , as they dont exist until the point of deployment , ant the moment this is handles through the traditional spreadsheet , which sucks
​
so who has a better way?
https://redd.it/11tqrv1
@r_devops
Reddit
r/devops on Reddit: How do you handle subnet reservation ?
Posted by u/titch124 - 3 votes and 5 comments
Guys/girls, I need your help!
So, i am doing an internship in this company after graduating. I applied for a mobile development position.I had really good mentors and everything was going according to plan. Long story short: there have been some fuckups in the company and now i have to decide between DevOps and data science.
So I need advice from you guys about what can I expect. What is it like working as a DevOps/data scientist. What do you like/dislike? How stressful/hard/fun it is etc.
Excuse my broken english as it is my second language.
I'm posting this question in both communities (feel free to redirect me somewhere else if you think it would suit my question better) .
Thanks everyone in advance!
https://redd.it/11tvz5o
@r_devops
So, i am doing an internship in this company after graduating. I applied for a mobile development position.I had really good mentors and everything was going according to plan. Long story short: there have been some fuckups in the company and now i have to decide between DevOps and data science.
So I need advice from you guys about what can I expect. What is it like working as a DevOps/data scientist. What do you like/dislike? How stressful/hard/fun it is etc.
Excuse my broken english as it is my second language.
I'm posting this question in both communities (feel free to redirect me somewhere else if you think it would suit my question better) .
Thanks everyone in advance!
https://redd.it/11tvz5o
@r_devops
Reddit
r/devops on Reddit: Guys/girls, I need your help!
Posted by u/crnigorac - No votes and no comments
Master EKS Clusters, Terraform & ArgoCD with this Comprehensive DevOps Tutorial!
Hey, DevOps enthusiasts! 👋
I recently created an in-depth tutorial covering the entire process of creating and managing an EKS cluster using Terraform modules and installing ArgoCD on it. I wanted to share it with you all, as I believe it can be a valuable resource for those looking to enhance their DevOps skills.
In this tutorial, you'll learn:
How to set up an EKS cluster with Terraform modules
Best practices for managing your infrastructure
Installing and configuring ArgoCD for seamless deployment
And finally, how to properly destroy the cluster once you're done
Whether you're new to DevOps or an experienced pro, I'm confident that you'll find this tutorial useful and informative!
🎥 Check out the video here: https://youtu.be/zgNs2xz1eLk
I'd love to hear your thoughts, feedback, or any questions you might have. Let's discuss and learn from each other!
Happy learning! 🚀
https://redd.it/11tx9gs
@r_devops
Hey, DevOps enthusiasts! 👋
I recently created an in-depth tutorial covering the entire process of creating and managing an EKS cluster using Terraform modules and installing ArgoCD on it. I wanted to share it with you all, as I believe it can be a valuable resource for those looking to enhance their DevOps skills.
In this tutorial, you'll learn:
How to set up an EKS cluster with Terraform modules
Best practices for managing your infrastructure
Installing and configuring ArgoCD for seamless deployment
And finally, how to properly destroy the cluster once you're done
Whether you're new to DevOps or an experienced pro, I'm confident that you'll find this tutorial useful and informative!
🎥 Check out the video here: https://youtu.be/zgNs2xz1eLk
I'd love to hear your thoughts, feedback, or any questions you might have. Let's discuss and learn from each other!
Happy learning! 🚀
https://redd.it/11tx9gs
@r_devops
YouTube
DevOps Tutorial: EKS Cluster, Terraform & ArgoCD Best Practices Unleashed!
Unlock the power of DevOps in this comprehensive tutorial as we explore the ins and outs of creating an EKS cluster using Terraform modules and seamlessly installing ArgoCD on it. Learn best practices for efficient and secure infrastructure management, and…
SonarCloud and golang code in Azure
Hi, i'm new in devops, and Azure. I'm trying to use SonarCloud in my project with Golang in Azure. I already install the extension, the prepare analysis configuration, run code analysis and publish code gate quality in the CI pipeline. When i run my code CI everything do fine but when i go see the results in SonarCloud, apparently just the golang code its not analyzed. i can see in Sumarry 0 Bugs, Code Smells, Vulnerabilities and Security Hotspots, and in Code i can see just the Dockerfile, the pipeline yml and manifests folder.
I tried to install the golang during CI pipeline but not work.
https://redd.it/11twr6w
@r_devops
Hi, i'm new in devops, and Azure. I'm trying to use SonarCloud in my project with Golang in Azure. I already install the extension, the prepare analysis configuration, run code analysis and publish code gate quality in the CI pipeline. When i run my code CI everything do fine but when i go see the results in SonarCloud, apparently just the golang code its not analyzed. i can see in Sumarry 0 Bugs, Code Smells, Vulnerabilities and Security Hotspots, and in Code i can see just the Dockerfile, the pipeline yml and manifests folder.
I tried to install the golang during CI pipeline but not work.
https://redd.it/11twr6w
@r_devops
Reddit
r/devops on Reddit: SonarCloud and golang code in Azure
Posted by u/CaioTaavares - No votes and no comments
March 29, Free Talk on the Future of DevOps with Sasha Rosenbaum, Principal at Ergonautic
March 29 at 12 pm ET (17:00 UTC), join Sasha Rosenbaum, principal at Ergonautic, for the ACM TechTalk " Future of DevOps." Andrew Clay Shafer of Ergonautic will moderate.
The term DevOps first appeared in 2009, and since then has been used to describe a cultural shift, an engineering job title, and many products in the Continuous Integration and Continuous Delivery space. In this session, Sasha will talk through the brief history of DevOps as a methodology, a set of technical skills, and an umbrella of technologies, and then dive into what the next 5 to 10 years are likely to look like in the DevOps space.
Register to attend this talk live or on demand.
https://redd.it/11tzpfj
@r_devops
March 29 at 12 pm ET (17:00 UTC), join Sasha Rosenbaum, principal at Ergonautic, for the ACM TechTalk " Future of DevOps." Andrew Clay Shafer of Ergonautic will moderate.
The term DevOps first appeared in 2009, and since then has been used to describe a cultural shift, an engineering job title, and many products in the Continuous Integration and Continuous Delivery space. In this session, Sasha will talk through the brief history of DevOps as a methodology, a set of technical skills, and an umbrella of technologies, and then dive into what the next 5 to 10 years are likely to look like in the DevOps space.
Register to attend this talk live or on demand.
https://redd.it/11tzpfj
@r_devops
Zoom
Welcome! You are invited to join a webinar: Future of DevOps. After registering, you will receive a confirmation email about joining…
The term DevOps first appeared in 2009, and since then has been used to describe a cultural shift, an engineering job title, and many products in the Continuous Integration and Continuous Delivery space. In this session, we will talk through the brief history…
What are some of your favorite projects to support on GitHub?
Hey y'all, happy Friday. I'm interested in discovering what kinds of projects devops professionals like to support. Maybe it's an open-source project led by a global team, or maybe it's one person's passion project to improve accessibility to K8s. Are there any you support on a regular basis, either through contributing or through sponsorships? Thanks for entertaining my curiosity!
https://redd.it/11u1jlf
@r_devops
Hey y'all, happy Friday. I'm interested in discovering what kinds of projects devops professionals like to support. Maybe it's an open-source project led by a global team, or maybe it's one person's passion project to improve accessibility to K8s. Are there any you support on a regular basis, either through contributing or through sponsorships? Thanks for entertaining my curiosity!
https://redd.it/11u1jlf
@r_devops
Reddit
r/devops on Reddit: What are some of your favorite projects to support on GitHub?
Posted by u/NewRelicChris - No votes and 1 comment
Any tips on how to run auto scaling self-hosted GitLab runners well?
If you are using AWS and EKS? Or other CSP is fine
https://redd.it/11tstqc
@r_devops
If you are using AWS and EKS? Or other CSP is fine
https://redd.it/11tstqc
@r_devops
Reddit
r/devops on Reddit: Any tips on how to run auto scaling self-hosted GitLab runners well?
Posted by u/IamOkei - 1 vote and 6 comments
Is chatgpt replacing or will eventually replace devops jobs?
Is chatgpt replacing or will eventually replace devops jobs? What are your views ?
https://redd.it/11u2pf9
@r_devops
Is chatgpt replacing or will eventually replace devops jobs? What are your views ?
https://redd.it/11u2pf9
@r_devops
Reddit
r/devops on Reddit: Is chatgpt replacing or will eventually replace devops jobs?
Posted by u/Foolca - No votes and 25 comments
Platform Engineering Won’t Kill the DevOps Star
Will platform engineering eclipse DevOps in 2023? Will platform teams better internally advocate their services?
This article answers these questions and includes other platform engineering predictions. Check it out 👇
https://thenewstack.io/platform-engineering-wont-kill-the-devops-star/?utm_source=Social-Media&utm_medium=Reddit&utm_campaign=SM
https://redd.it/11u7rjj
@r_devops
Will platform engineering eclipse DevOps in 2023? Will platform teams better internally advocate their services?
This article answers these questions and includes other platform engineering predictions. Check it out 👇
https://thenewstack.io/platform-engineering-wont-kill-the-devops-star/?utm_source=Social-Media&utm_medium=Reddit&utm_campaign=SM
https://redd.it/11u7rjj
@r_devops
The New Stack
Platform Engineering Won’t Kill the DevOps Star
Will platform engineering eclipse DevOps in 2023? How will platform teams better internally advocate their services? Read platform predictions.