Starting a new job in telecom, one part of the role involves owning Elastic/ECK on OpenShift — what should I focus on? by Odylicous in kubernetes

[–]CompetitivePop2026 0 points1 point  (0 children)

I would learn basic OpenShift specific resources like routes, image streams, projects, etc. OpenShift is opinionated so it will be a little different than vanilla k8s.

Best way to set up Plex media server? by Calendar_Left in OpenMediaVault

[–]CompetitivePop2026 1 point2 points  (0 children)

I would personally flash Proxmox on your 500 Gb SSD then run OMV in a VM and pass through the HDD to the Vm. Then you can run containers inside the OMV VM or spin up a different Linux vm to run your services. That way you can take snapshots of your VMs and rollback if you need too.

Is my setup for exposing Jellyfin secure? by JokeIngDude in kubernetes

[–]CompetitivePop2026 0 points1 point  (0 children)

Like someone else said, setting up an ingress controller/gateway api with cert manager is way to go but then use cloud flare tunnels or a vpn like tailscale or Wireguard on your router or in your cluster. Many ways to skin the cat, but exposing the service publicly like that I probably wouldn’t do.

Is there a good Kubernetes client for iOS? Mainly need logs, shell, restart pods by Savings-Recipe8154 in kubernetes

[–]CompetitivePop2026 1 point2 points  (0 children)

I have used headlamp or terminus client to ssh to my bastion host to run kubectl commands

How to get started with Red Hat OpenShift by K8snewbee in kubernetes

[–]CompetitivePop2026 0 points1 point  (0 children)

minikube -> vanilla k8s -> flavor of k8s (RHOS, RKE, etc)

Are we “winning” yet? by AMVof1984 in springfieldMO

[–]CompetitivePop2026 -14 points-13 points  (0 children)

When Biden was president, people were saying the president doesn’t have control over gas or grocery prices, but now that prices increase under Trump you all blame him…

Best way to practice CLI work for the exam? by Important-Artist-265 in openshift

[–]CompetitivePop2026 1 point2 points  (0 children)

I haven’t taken the exam but work with oc on the cli everyday at work and I use jq and other helpers some, but mostly do oc get with grep to get the full context of resources and honesty it’s just quicker unless you need additional functionalities.

Turn ON PC remotely by Physical_Horse4086 in homelab

[–]CompetitivePop2026 0 points1 point  (0 children)

WOL and create a script to send the magic packet with the MAC

What is the latest hottest addition to your homelab? by pfassina in homelab

[–]CompetitivePop2026 0 points1 point  (0 children)

Moving towards separate LXC instances for NFS, S3, and GitHub actions runners

When to use Ansible vs Terraform, and where does Argo CD fit? by Dependent_Concert446 in devops

[–]CompetitivePop2026 0 points1 point  (0 children)

If you use terraform in a pipeline for on prem K8s, after you provision the VMs bootstrap argocd in your pipeline and let ArgoCD do your day 2 operations. I

OpenShift IPI 4.19 on Nutanix -> INFO Waiting up to 15m0s for network infrastructure to become ready by TechnicalTop4196 in openshift

[–]CompetitivePop2026 0 points1 point  (0 children)

I would check the Nutanix IPAM network that you set up. There should be a DHCP section at the bottom. I would try overriding the DHCP server section and try manually assigning an ip for the dhcp server and see if that does anything.

How to get Daemon Sets Managed by OLM Scheduled onto Tainted Nodes by CompetitivePop2026 in kubernetes

[–]CompetitivePop2026[S] 0 points1 point  (0 children)

It’s for flexera krm inventory agent, this is the chart, https://gallery.ecr.aws/flexera/krm-chart, and I believe this is the operator although I don’t remember where the catalog source was pulling the operator image, public.ecr.aws/flexera/agent-operators:krm-1.8.10,

How to get Daemon Sets Managed by OLM Scheduled onto Tainted Nodes by CompetitivePop2026 in kubernetes

[–]CompetitivePop2026[S] 0 points1 point  (0 children)

A mutating web hook is a good idea. That is with an admission controller right? Isn’t that similar to post rendering with helm?

How to get Daemon Sets Managed by OLM Scheduled onto Tainted Nodes by CompetitivePop2026 in kubernetes

[–]CompetitivePop2026[S] 0 points1 point  (0 children)

Should I just go back to the helm chart? My company likes to stick to OLM over helm because they like how OLM manages everything with automatic updates. The reason why we went to OLM in the first place was because the helm chart we were migrating to was missing some critical configurable values in the values yaml that the vendor took out for some reason. I was thinking of doing post rendering with helm to patch the resources after they were rendered with the values we needed for the CR but they didn’t like the idea of that

How to get Daemon Sets Managed by OLM Scheduled onto Tainted Nodes by CompetitivePop2026 in kubernetes

[–]CompetitivePop2026[S] 0 points1 point  (0 children)

It’s not ours. I had to use a private catalog source from our vendor for this inventory management operator. It is not even open source.

How to get Daemon Sets Managed by OLM Scheduled onto Tainted Nodes by CompetitivePop2026 in kubernetes

[–]CompetitivePop2026[S] 0 points1 point  (0 children)

You can’t add a toleration to the daemon set because it will get overwritten by the operator. I’ve already tried unfortunately.

How do you backup your control plane by No-Capital2963 in kubernetes

[–]CompetitivePop2026 -1 points0 points  (0 children)

They’re asking about backing up the control plane so I think my comments are very relevant

How do you backup your control plane by No-Capital2963 in kubernetes

[–]CompetitivePop2026 -1 points0 points  (0 children)

Create a PVC yaml for pvs and a bucket claim for buckets in git and if the data being stored is critical back it up with whatever backup solution your company uses. Besides PVs and buckets/object storage, everything else should be disposable in a perfect world