Helm Templates and Values: Make Re-usable Helm Charts
In the new lesson of Helm Lightning Course, I am going to talk about Helm templates and values - by the end of the lesson, you will learn how to create reusable Helm Charts: https://youtu.be/BGM3X59biFI
https://redd.it/ra3066
@r_devops
In the new lesson of Helm Lightning Course, I am going to talk about Helm templates and values - by the end of the lesson, you will learn how to create reusable Helm Charts: https://youtu.be/BGM3X59biFI
https://redd.it/ra3066
@r_devops
YouTube
Helm Templates and Values: Make Re-usable Helm Charts
In this lesson of the Helm Lightning Course we are going to learn what Helm Templates and Values are for by extending phAdmin Helm Chart making it configurable.
Source code: https://github.com/mkdev-me/helm-lightning-course/commit/1a9d6aa1bfc0613f8aecd…
Source code: https://github.com/mkdev-me/helm-lightning-course/commit/1a9d6aa1bfc0613f8aecd…
6 things to consider when defining your Apache Flink cluster size
One of the frequently asked questions by the Apache Flink community revolves around how to plan and calculate a Flink cluster size (i.e. how to define the number of resources you will need to run a specific Flink job). Defining your cluster size will obviously depend on various factors such as the use case, the scale of your application, and your specific service-level-agreements (SLAs). Additional factors that will have an impact on your Flink cluster size include the type of checkpointing in your application (incremental versus full checkpoints), and whether your Flink job processing is continuous or bursty.
The following 6 aspects are, among others, some initial elements to consider when defining your Apache Flink cluster size:
1. The number of records and the size per record
2. The number of distinct keys and the state size per key
3. The number of state updates and the access patterns of your state backend
4. The network capacity
5. The disk bandwidth
6. The number of machines and their available CPU and memory
​
More details and info: https://www.ververica.com/blog/6-things-to-consider-when-defining-your-apache-flink-cluster-size
https://redd.it/ra545l
@r_devops
One of the frequently asked questions by the Apache Flink community revolves around how to plan and calculate a Flink cluster size (i.e. how to define the number of resources you will need to run a specific Flink job). Defining your cluster size will obviously depend on various factors such as the use case, the scale of your application, and your specific service-level-agreements (SLAs). Additional factors that will have an impact on your Flink cluster size include the type of checkpointing in your application (incremental versus full checkpoints), and whether your Flink job processing is continuous or bursty.
The following 6 aspects are, among others, some initial elements to consider when defining your Apache Flink cluster size:
1. The number of records and the size per record
2. The number of distinct keys and the state size per key
3. The number of state updates and the access patterns of your state backend
4. The network capacity
5. The disk bandwidth
6. The number of machines and their available CPU and memory
​
More details and info: https://www.ververica.com/blog/6-things-to-consider-when-defining-your-apache-flink-cluster-size
https://redd.it/ra545l
@r_devops
Ververica
6 things to consider when defining your Apache Flink cluster size
This blog post provides some easy tips on how to plan and calculate a Flink cluster size (i.e. how to define the resources needed to run a Flink job)
DevOps Bulletin Newsletter - Issue 28
DevOps Bulletin - Digest #28 is out, the following topics are covered:
* **How to build a centralized logging platform with ELK, Kafka and K8s**
* **75 exercises to improve your Python regex skills**
* **The lazier way to manage everything Docker**
* **How to write an effective incident reports**
* **How to integrate your CI/CD pipeline with Kubernetes when using RBAC**
Complete issue: [https://issues.devopsbulletin.com/issues/writing-incident-reports.html](https://issues.devopsbulletin.com/issues/writing-incident-reports.html)
Feedback is welcome :)
https://redd.it/ra5ws8
@r_devops
DevOps Bulletin - Digest #28 is out, the following topics are covered:
* **How to build a centralized logging platform with ELK, Kafka and K8s**
* **75 exercises to improve your Python regex skills**
* **The lazier way to manage everything Docker**
* **How to write an effective incident reports**
* **How to integrate your CI/CD pipeline with Kubernetes when using RBAC**
Complete issue: [https://issues.devopsbulletin.com/issues/writing-incident-reports.html](https://issues.devopsbulletin.com/issues/writing-incident-reports.html)
Feedback is welcome :)
https://redd.it/ra5ws8
@r_devops
Devopsbulletin
Devops Bulletin
Digest #28: Writing Incident Reports
Settings up k8s cluster on single vm
Hello there, I have task where I need to orchestrate ELK stack using K8s while having single vm only. I was told to use docker to create k8s cluster, so I tried to use KIND (kuberneteas inside docker) but it is more complicated to understand. So, is there any other way to achieve the goal?
https://redd.it/ra5tgm
@r_devops
Hello there, I have task where I need to orchestrate ELK stack using K8s while having single vm only. I was told to use docker to create k8s cluster, so I tried to use KIND (kuberneteas inside docker) but it is more complicated to understand. So, is there any other way to achieve the goal?
https://redd.it/ra5tgm
@r_devops
reddit
Settings up k8s cluster on single vm
Hello there, I have task where I need to orchestrate ELK stack using K8s while having single vm only. I was told to use docker to create k8s...
Retrieva data from Azure App Configuration with Powershell?
Hi yall, I was suprised that MSFT calm hasn't made a PowerShell Module to work with App Configuration data, so I made my own: link It uses the
https://redd.it/ra6mua
@r_devops
Hi yall, I was suprised that MSFT calm hasn't made a PowerShell Module to work with App Configuration data, so I made my own: link It uses the
az appconfig in the background (so you need azure cli installed), but it added support for referencing to other keys, within the value. ## Install module install-module PSAzureAppConfiguration -Repository PSGallery ## Usage Log in Azure account using a service principal $clientId = 'client/app id' $tenantId = 'tenant id' $secret = 'client secret' az login --service-principal --username $clientId --password $secret --tenant $tenantId Get configuration: $MyConfig = Get-AppConfigurationKeyValue -Store MyAppConfigStore -Label Productionhttps://redd.it/ra6mua
@r_devops
GitHub
GitHub - mieel/PSAzureAppConfiguration
Contribute to mieel/PSAzureAppConfiguration development by creating an account on GitHub.
How to Manage GitHub Actions Environment Variables and Secrets
Hey guys,
Muhammed Ali just wrote a new blog post you may enjoy on the ATA blog.
"How to Manage GitHub Actions Environment Variables and Secrets"
Summary:
Learn different ways to save your GitHub Action environment variables and secrets you can use when required while working with GitHub Actions.
https://adamtheautomator.com/github-actions-environment-variables/
https://redd.it/ra753u
@r_devops
Hey guys,
Muhammed Ali just wrote a new blog post you may enjoy on the ATA blog.
"How to Manage GitHub Actions Environment Variables and Secrets"
Summary:
Learn different ways to save your GitHub Action environment variables and secrets you can use when required while working with GitHub Actions.
https://adamtheautomator.com/github-actions-environment-variables/
https://redd.it/ra753u
@r_devops
ATA Learning
How to Manage GitHub Actions Environment Variables and Secrets
Learn different ways to save your GitHub Actions environment variables and secrets you can use when required while working with GitHub Actions
What do folks use to draw network architecture diagrams?
I learned about plantUML and nwdiag in particular in the not so distant past but never really used it. I like the idea of documenting things in code and just generate the images whenever they're needed; makes updating and revising things real easy.
What do you guys use at work?
https://redd.it/raccx8
@r_devops
I learned about plantUML and nwdiag in particular in the not so distant past but never really used it. I like the idea of documenting things in code and just generate the images whenever they're needed; makes updating and revising things real easy.
What do you guys use at work?
https://redd.it/raccx8
@r_devops
reddit
What do folks use to draw network architecture diagrams?
I learned about plantUML and nwdiag in particular in the not so distant past but never really used it. I like the idea of documenting things in...
I have a CNAME pointing to our auth service, but customer wants a TXT verification record?
So I have a CNAME record: login.example.com \-> auth.com which works but our customer is requesting a TXT record for verification of DNS.
​
I don't know exactly what they're asking for and I'm not sure how I should go about doing this, anyone able to point to the right direction?
https://redd.it/rahiex
@r_devops
So I have a CNAME record: login.example.com \-> auth.com which works but our customer is requesting a TXT record for verification of DNS.
​
I don't know exactly what they're asking for and I'm not sure how I should go about doing this, anyone able to point to the right direction?
https://redd.it/rahiex
@r_devops
How to apply the same resource-policy in all buckets
Hi, guys.
I have a lot of s3 buckets on which I have to apply the same policy. Is there any way to do all with less effort?
There is another point that confuse me. Why if this apply only bucket by bucket, there are examples where use two or more resources.
https://redd.it/rakd1g
@r_devops
Hi, guys.
I have a lot of s3 buckets on which I have to apply the same policy. Is there any way to do all with less effort?
There is another point that confuse me. Why if this apply only bucket by bucket, there are examples where use two or more resources.
{"Id": "ExamplePolicy","Version": "2012-10-17","Statement": [{"Sid": "AllowSSLRequestsOnly","Action": "s3:*","Effect": "Deny","Resource": ["arn:aws:s3:::DOC-EXAMPLE-BUCKET","arn:aws:s3:::DOC-EXAMPLE-BUCKET/*"],"Condition": {"Bool": {"aws:SecureTransport": "false" }},"Principal": "*" }] }https://redd.it/rakd1g
@r_devops
reddit
How to apply the same resource-policy in all buckets
Hi, guys. I have a lot of s3 buckets on which I have to apply the same policy. Is there any way to do all with less effort? There is another...
Opensource CA for client cert management
I am looking for a project that runs a CA to manage client certs and CRLs. I'd like to have a gui I can hand over to operations people that can generate client certs for customers and revoke them as needed. Any recommendations? Thanks in advance.
https://redd.it/razpsk
@r_devops
I am looking for a project that runs a CA to manage client certs and CRLs. I'd like to have a gui I can hand over to operations people that can generate client certs for customers and revoke them as needed. Any recommendations? Thanks in advance.
https://redd.it/razpsk
@r_devops
reddit
Opensource CA for client cert management
I am looking for a project that runs a CA to manage client certs and CRLs. I'd like to have a gui I can hand over to operations people that can...
So, it looks like AWS us-east-1 is experiencing issues…
https://downdetector.co.uk/status/aws-amazon-web-services/
Does that mean I can go home early for Christmas?
https://redd.it/rb27i2
@r_devops
https://downdetector.co.uk/status/aws-amazon-web-services/
Does that mean I can go home early for Christmas?
https://redd.it/rb27i2
@r_devops
downdetector.co.uk
Amazon Web Services down? Realtime overview of AWS status, issues and outages
Real-time overview of issues with Amazon Web Services. Is your service not functioning properly? Here you learn whats is going on.
What are the biggest security challenges for DevOps?
Feel free to suggest other options for things that keep you awake at night (including pager calls).
View Poll
https://redd.it/raydwi
@r_devops
Feel free to suggest other options for things that keep you awake at night (including pager calls).
View Poll
https://redd.it/raydwi
@r_devops
reddit
What are the biggest security challenges for DevOps?
Feel free to suggest other options for things that keep you awake at night (including pager calls).
How stressful is working in DevOps in comparison to other fields/industries? Survey
We had a very peculiar hypothesis the other day:
"Working in DevOps is MUCH more stressful than in any other IT-related field".
So, we came up with a survey to compare the level of stress in different industries, focusing on DevOps.
If you had 8-10 minutes to spare and would be able to answer a few "stress in the workplace"-related questions, it would mean the world to me.
Here's the survey: https://docs.google.com/forms/d/e/1FAIpQLSfIgTcwb8kqTmPeYe-JlLLIcwRSTCbBBUHKaDBEukLASWPLiA/viewform?usp=sf\_link
Of course I'll share the results with the community as soon as we get them together :-)
I'd really appreciate any help you can provide.
https://redd.it/rb67mn
@r_devops
We had a very peculiar hypothesis the other day:
"Working in DevOps is MUCH more stressful than in any other IT-related field".
So, we came up with a survey to compare the level of stress in different industries, focusing on DevOps.
If you had 8-10 minutes to spare and would be able to answer a few "stress in the workplace"-related questions, it would mean the world to me.
Here's the survey: https://docs.google.com/forms/d/e/1FAIpQLSfIgTcwb8kqTmPeYe-JlLLIcwRSTCbBBUHKaDBEukLASWPLiA/viewform?usp=sf\_link
Of course I'll share the results with the community as soon as we get them together :-)
I'd really appreciate any help you can provide.
https://redd.it/rb67mn
@r_devops
Google Docs
Stress at work in different industries - DevOps focus
Welcome to our survey aiming to find out about how people working in different industries experience stress at a workplace. Thanks so much for participating!
Ansible, Terraform, Puppet, or Chef for Personal Project - No Devops Background
Context
Working on a side project involving GCP VM instances. I am looking to scale my project and starting to encounter bottlenecks/inefficiencies in my workflow. I have no DevOps experience so seeking guidance from gurus.
​
Background
Engineer proficient in Matlab
Familiar with basic coding from school but no work experience with other programming languages i.e., C, Java, etc
​
Infrastructure
4 google cloud VM instances using T4 GPUs on Windows 2016 Datacenter
2 from unique accounts, another 2 from one account.
Controlled by a personal Windows 10 computer
In the future, possibly scale to 20+ VM instances.
​
Starting Instances
I've been manually starting the instances using the GCP VM browser GUI and logging in manually using passwords.
I recently learned that the preferred login method is ssh. I'll be looking into that.
Sometimes the external IP changes so I must manually change the IP address on my rdp session.
Q1) Is there a way to better log into VM instances when the external IP changes?
​
Setting Up Instances
Each instance takes a while to setup i.e., installing software and configuring it.
Instances created from one account are manageable as I can create machine images with the same setup. However, instances on unique accounts are annoying because I must do a fresh setup.
I am constantly improving the workflow, so I am introducing new software. It's a pain to go through each instance and set it up, especially if the setup takes 10+ minutes each time.
Q2) Is there a better way to install software and configure amongst many/specific VM instances.
​
Main Workflow
On startup it runs a dumb exe that opens programs and clicks on buttons (dumb in the sense that it was created using a macro recorder)
User manually enters in information to a GUI based program (TCPViewer) for each vm instance.
User manually starts a script that opens and closes a program until a desired image is detected.
Once detected, a screenshot is taken and sent to a discord webhook.
Script pauses until user manually confirms a dialog box to continue the script.
Q3) Looking for a better way to send inputs/commands/information across multiple/specific vm instances.
​
Overseeing VM Instances
Viewing the vm instances, I have a rdp session for each instance partitioned in a wide screen monitor
This won't scale well if I significantly increase the number of instances.
Q4) Is there a better way to view many VM instances?
Q5) Is there a way to simultaneously control multiple VM instances with mouse & keyboard inputs?
​
Pain Points
Q1) Is there a way to better log into VM instances when the external IP changes?
Q2) Is there a better way to install software and configure amongst many/specific VM instances.
Q3) Looking for a better way to send inputs/commands/information across multiple/specific vm instances.
Q4) Is there a better way to view many VM instances?
Q5) Is there a way to simultaneously control multiple VM instances with mouse & keyboard inputs?
​
DevOps Software
From my scant google searching, I stumbled upon some tools that might solve my pain points; Ansible, Terraform, Puppet, Chef
This is a personal project so I can’t fork out enterprise $$$$.
Q6) Any suggestions on which tool best solves the above pain points that is free/cheap and easy-to-use?
https://redd.it/rb3b85
@r_devops
Context
Working on a side project involving GCP VM instances. I am looking to scale my project and starting to encounter bottlenecks/inefficiencies in my workflow. I have no DevOps experience so seeking guidance from gurus.
​
Background
Engineer proficient in Matlab
Familiar with basic coding from school but no work experience with other programming languages i.e., C, Java, etc
​
Infrastructure
4 google cloud VM instances using T4 GPUs on Windows 2016 Datacenter
2 from unique accounts, another 2 from one account.
Controlled by a personal Windows 10 computer
In the future, possibly scale to 20+ VM instances.
​
Starting Instances
I've been manually starting the instances using the GCP VM browser GUI and logging in manually using passwords.
I recently learned that the preferred login method is ssh. I'll be looking into that.
Sometimes the external IP changes so I must manually change the IP address on my rdp session.
Q1) Is there a way to better log into VM instances when the external IP changes?
​
Setting Up Instances
Each instance takes a while to setup i.e., installing software and configuring it.
Instances created from one account are manageable as I can create machine images with the same setup. However, instances on unique accounts are annoying because I must do a fresh setup.
I am constantly improving the workflow, so I am introducing new software. It's a pain to go through each instance and set it up, especially if the setup takes 10+ minutes each time.
Q2) Is there a better way to install software and configure amongst many/specific VM instances.
​
Main Workflow
On startup it runs a dumb exe that opens programs and clicks on buttons (dumb in the sense that it was created using a macro recorder)
User manually enters in information to a GUI based program (TCPViewer) for each vm instance.
User manually starts a script that opens and closes a program until a desired image is detected.
Once detected, a screenshot is taken and sent to a discord webhook.
Script pauses until user manually confirms a dialog box to continue the script.
Q3) Looking for a better way to send inputs/commands/information across multiple/specific vm instances.
​
Overseeing VM Instances
Viewing the vm instances, I have a rdp session for each instance partitioned in a wide screen monitor
This won't scale well if I significantly increase the number of instances.
Q4) Is there a better way to view many VM instances?
Q5) Is there a way to simultaneously control multiple VM instances with mouse & keyboard inputs?
​
Pain Points
Q1) Is there a way to better log into VM instances when the external IP changes?
Q2) Is there a better way to install software and configure amongst many/specific VM instances.
Q3) Looking for a better way to send inputs/commands/information across multiple/specific vm instances.
Q4) Is there a better way to view many VM instances?
Q5) Is there a way to simultaneously control multiple VM instances with mouse & keyboard inputs?
​
DevOps Software
From my scant google searching, I stumbled upon some tools that might solve my pain points; Ansible, Terraform, Puppet, Chef
This is a personal project so I can’t fork out enterprise $$$$.
Q6) Any suggestions on which tool best solves the above pain points that is free/cheap and easy-to-use?
https://redd.it/rb3b85
@r_devops
reddit
Ansible, Terraform, Puppet, or Chef for Personal Project - No...
**Context** Working on a side project involving GCP VM instances. I am looking to scale my project and starting to encounter...
Junior DevOps Engineer - Accenture Interview Preparation.
Hey DVs,
Was trying to see if anyone has ever interviewed with Accenture for this exact role or something similar? It’s going to be 45 min technical interview. To try and study up I found this online:
https://www.credosystemz.com/accenture-devops-interview-questions/
Would this happen to be accurate? Just don’t want to get so nervous. But this would be a break through as I do have some familiarity with DevOps more using DevOps tools but no so much the “building/scripting” part.
Thanks in advance for the advice! All is appreciated.
https://redd.it/rb98yo
@r_devops
Hey DVs,
Was trying to see if anyone has ever interviewed with Accenture for this exact role or something similar? It’s going to be 45 min technical interview. To try and study up I found this online:
https://www.credosystemz.com/accenture-devops-interview-questions/
Would this happen to be accurate? Just don’t want to get so nervous. But this would be a break through as I do have some familiarity with DevOps more using DevOps tools but no so much the “building/scripting” part.
Thanks in advance for the advice! All is appreciated.
https://redd.it/rb98yo
@r_devops
IT Training Institute in chennai | Best Placement Training Institute
ACCENTURE DEVOPS INTERVIEW QUESTIONS 2026
ACCENTURE DEVOPS INTERVIEW QUESTIONS - These questions are included for both Freshers and Experienced professionals.
logging best practices
I need to improve logging of several microservices that do speak with other as well as other external services. So I wanted to ask you how should I go with logging the requests between the microservices that I have control over and the external ones so I have good observability over the whole picture.
Of course you have also other points that I should consider for the internal services including trace ids, the data to be logged etc.. I'd appreciate it and thanks.
PS: nodejs and ts are used for the ms and self-made middleware for the logging
https://redd.it/rbb92x
@r_devops
I need to improve logging of several microservices that do speak with other as well as other external services. So I wanted to ask you how should I go with logging the requests between the microservices that I have control over and the external ones so I have good observability over the whole picture.
Of course you have also other points that I should consider for the internal services including trace ids, the data to be logged etc.. I'd appreciate it and thanks.
PS: nodejs and ts are used for the ms and self-made middleware for the logging
https://redd.it/rbb92x
@r_devops
reddit
logging best practices
I need to improve logging of several microservices that do speak with other as well as other external services. So I wanted to ask you how should...
Newly recruited DevOp Engineer
Hi there fellow DevOps Engineers!
I got a offer recently and i accepted it of course about a position for a DevOps Engineer role. Its abroad so they are offering also a relocation package and they seem to have a very good culture as company but still i feel so stressful because the truth its that i dont have any real experience with DevOps.
Yes i have good experience with Linux and command lines yes i know a bit of Ansible and Amazon Cloud and recently i have study a lot about Docker and Kubernetes but still if you throw me to a corporate environment of production i ll need some time to adjust.
The technical interview was quite easy and i had just to talk about Kubernetes and its Resources or Services and very general how it works and a bit of Docker...They asked me some commands of it and if i know also Python which i said yes but still i am just studding it so i am not a developer.
I have few weeks till i ll start this new job and i am trying to study as smart possible so i can catch up easy when the time comes but i ll appreciate any advice or info that they can help me further because the truth its that i am a bit under-qualified for this job...
Yes they are saying they are offering also some training etc but still...
I know also that they dont expect me to be a senior from day one and the position was more of midlevel but still...
I want to be make a good impression because they trusted me..I dont have done much jobs in my life expect some junior Linux System administration...
https://redd.it/rbbxgr
@r_devops
Hi there fellow DevOps Engineers!
I got a offer recently and i accepted it of course about a position for a DevOps Engineer role. Its abroad so they are offering also a relocation package and they seem to have a very good culture as company but still i feel so stressful because the truth its that i dont have any real experience with DevOps.
Yes i have good experience with Linux and command lines yes i know a bit of Ansible and Amazon Cloud and recently i have study a lot about Docker and Kubernetes but still if you throw me to a corporate environment of production i ll need some time to adjust.
The technical interview was quite easy and i had just to talk about Kubernetes and its Resources or Services and very general how it works and a bit of Docker...They asked me some commands of it and if i know also Python which i said yes but still i am just studding it so i am not a developer.
I have few weeks till i ll start this new job and i am trying to study as smart possible so i can catch up easy when the time comes but i ll appreciate any advice or info that they can help me further because the truth its that i am a bit under-qualified for this job...
Yes they are saying they are offering also some training etc but still...
I know also that they dont expect me to be a senior from day one and the position was more of midlevel but still...
I want to be make a good impression because they trusted me..I dont have done much jobs in my life expect some junior Linux System administration...
https://redd.it/rbbxgr
@r_devops
reddit
Newly recruited DevOp Engineer
Hi there fellow DevOps Engineers! I got a offer recently and i accepted it of course about a position for a DevOps Engineer role. Its abroad so...
Any in-depth material to compare the different deployment methods and which deployment method is best suited for which situation
I understand blue green, rolling upgrades and canary. But there doesn't seem to be any in depth content for the pros and cons and advice for which deployment strategy to employ for which situation. Every article is just surface level. Blue green requires additional set of resources and have ease of roll back. Rolling update doesn't require additional resources etc..
Is there any reference material for more detailed analysis?
https://redd.it/rbddfq
@r_devops
I understand blue green, rolling upgrades and canary. But there doesn't seem to be any in depth content for the pros and cons and advice for which deployment strategy to employ for which situation. Every article is just surface level. Blue green requires additional set of resources and have ease of roll back. Rolling update doesn't require additional resources etc..
Is there any reference material for more detailed analysis?
https://redd.it/rbddfq
@r_devops
reddit
Any in-depth material to compare the different deployment methods...
I understand blue green, rolling upgrades and canary. But there doesn't seem to be any in depth content for the pros and cons and advice for which...
Expose your Kubernetes service
Is it possible to Expose your Kubernetes service with ingress controller without having dedicated domain or even without ingress controller?
https://redd.it/rbaymt
@r_devops
Is it possible to Expose your Kubernetes service with ingress controller without having dedicated domain or even without ingress controller?
https://redd.it/rbaymt
@r_devops
reddit
Expose your Kubernetes service
Is it possible to Expose your Kubernetes service with ingress controller without having dedicated domain or even without ingress controller?
Offline kubernetes
Anybody ever tried to setup this nightmare before? I hope somebody can give me some pointers on how to troubleshoot this. I've got a working online cluster. I export the downloaded images using podman. I reverted the controller/nodes using a snapshot. I imported the exported containers into the controller and tried a kubeadm init. It say the image names/version matched and attempted to create a new cluster but failed somewhere in the process. What I'm running into is when I use crictl or podman to try and list my containers or view logs there are none. I've confirmed the exporting is the cause with resetting my online cluster and importing the saved images. Can anyone point in the right direction on troubleshooting this? Either with what went wrong with exporting or why the containers aren't starting in the cluster. I've tried using podman/crictl logs function but there are no containers when kubeadm exits. Any containers kubeadm tries to create with the imported images are gone. Should my next attempt just be to find out where an online master saves the images and tarball all the files up?
https://redd.it/rbfx1j
@r_devops
Anybody ever tried to setup this nightmare before? I hope somebody can give me some pointers on how to troubleshoot this. I've got a working online cluster. I export the downloaded images using podman. I reverted the controller/nodes using a snapshot. I imported the exported containers into the controller and tried a kubeadm init. It say the image names/version matched and attempted to create a new cluster but failed somewhere in the process. What I'm running into is when I use crictl or podman to try and list my containers or view logs there are none. I've confirmed the exporting is the cause with resetting my online cluster and importing the saved images. Can anyone point in the right direction on troubleshooting this? Either with what went wrong with exporting or why the containers aren't starting in the cluster. I've tried using podman/crictl logs function but there are no containers when kubeadm exits. Any containers kubeadm tries to create with the imported images are gone. Should my next attempt just be to find out where an online master saves the images and tarball all the files up?
https://redd.it/rbfx1j
@r_devops
reddit
Offline kubernetes
Anybody ever tried to setup this nightmare before? I hope somebody can give me some pointers on how to troubleshoot this. I've got a working...
How to build a self-service container management system for your team
Last chance to register for this live event! Discover how to build a self-service container management system for your team, featuring Portainer Technical Evangelist, Adolfo Delorenzo.
To succeed with containers, you need to give end-users secure access to the tools they need to do their job. Portainer makes it easy to set up and configure a complete service delivery engine.
In this session, you’ll learn more about -
1. Resource management
2. Resource assignment (namespaces, registries etc)
3. User roles
4. Cluster security
EVENT DETAILS
Wednesday 8th December
8am San Francisco
11am New York
1pm Rio De Janeiro
4pm London
5pm Berlin
7pm Moscow
Midnight Singapore
Register here
https://lnkd.in/d8ycgE7E
https://redd.it/rba3f7
@r_devops
Last chance to register for this live event! Discover how to build a self-service container management system for your team, featuring Portainer Technical Evangelist, Adolfo Delorenzo.
To succeed with containers, you need to give end-users secure access to the tools they need to do their job. Portainer makes it easy to set up and configure a complete service delivery engine.
In this session, you’ll learn more about -
1. Resource management
2. Resource assignment (namespaces, registries etc)
3. User roles
4. Cluster security
EVENT DETAILS
Wednesday 8th December
8am San Francisco
11am New York
1pm Rio De Janeiro
4pm London
5pm Berlin
7pm Moscow
Midnight Singapore
Register here
https://lnkd.in/d8ycgE7E
https://redd.it/rba3f7
@r_devops
www.portainer.io
Discover how to build a self-service container management system everyone will love
Join one of our PortaiNerd events to discover easy container management for Kubernetes, Docker/Swarm and more.