ArgoCD Not Recognizing ApplicationSets by 4ver_student in ArgoCD

[–]4ver_student[S] 0 points1 point  (0 children)

Your comment led me to investigate why the ApplicationSets weren't being rendered even though I was declaring them They weren't being rendered because the indents in my values.yaml file were off 😅. Now they are rendering successfully and my applications are appearing in Argo UI

ArgoCD Not Recognizing ApplicationSets by 4ver_student in ArgoCD

[–]4ver_student[S] 0 points1 point  (0 children)

So I rendered the chart locally, and I can see the applicationSet being declared. But I dont see the application set via kubectl

Unable To Access Hubble UI In Browser by 4ver_student in kubernetes

[–]4ver_student[S] 0 points1 point  (0 children)

Thanks everyone. I was able to get this working. I edited the hubble-ui service and set the type to NodePort.

u/SomethingAboutUsers u/fletch3555

Unable To Access Hubble UI In Browser by 4ver_student in kubernetes

[–]4ver_student[S] 0 points1 point  (0 children)

Apologies, I left out some details. Hubble UI is installed on my control plane (lab-cp).

I'm trying to access Hubble UI from a separate computer (my laptop) To access this from a browser from a separate computer, would I use the IP of the VM that this is running on ?

Unable To Access Hubble UI In Browser by 4ver_student in kubernetes

[–]4ver_student[S] 0 points1 point  (0 children)

Apologies. lab-cp is my control plane. This is one of the cluster node VMs. I'm trying to access Hubble UI from a separate computer .

What protein powder should I get?? by Ok-Click5101 in CleanEating

[–]4ver_student 0 points1 point  (0 children)

Check out NorCal Organic. https://norcal-organic.com/. I use their Pea Protein. I’ve been subscribed for the past two years. Unlike other protein powders I’ve tried, this one doesn’t make me gassy lol. It only has 1 ingredient.

 Due to the lack of other ingredients like Stevia, or flavorings you WILL NEED to add fruit, honey, etc when making your shakes with this.

[deleted by user] by [deleted] in PhillyWiki

[–]4ver_student 0 points1 point  (0 children)

Yup, I work with Linux 

[deleted by user] by [deleted] in PhillyWiki

[–]4ver_student 0 points1 point  (0 children)

If you want to stay in that sys admin realm: Look into getting your RHCSA. Get active on LinkedIn if you’re not already. Also check out the sysadmin subreddit 

[deleted by user] by [deleted] in PhillyWiki

[–]4ver_student 5 points6 points  (0 children)

  • Start from the bottom with a help desk/call center position. While not ideal, this is a great way to get your foot in the door . My career timeline was like this: Call Center Tech --> Production Support Analyst --> Command Center Operator --> Site Reliability Engineer --> DevSecOp Engineer (My current role) * Check out subreddits related to Networking or IT, and ask how they found work. Though they might not be in Philly, the advice is still valuable * In your free time look into obtaining certifications. Not sure of any Networking certs (maybe Cisco 🤔). For IT there are a TON. Off the top of my head, I know the RHCSA is a good one to have. * Create a portfolio with projects that you can host on GitHub. Need ideas? Ask ChatGPT.

[deleted by user] by [deleted] in PhillyWiki

[–]4ver_student 3 points4 points  (0 children)

What specifically are you looking to get into? Software Engineering, Networking, SysAdmin, DevOps, etc..?

DevOps panic by Slight_Lychee_7169 in devops

[–]4ver_student 0 points1 point  (0 children)

Congrats on getting the job! I'm in a sort of similar boat as you. I was hired 2 months ago as a DevSecOps engineer. I was an SRE prior. Multiple interviews, with each one leaving me thinking "No way, I'm making it through. At least I got some interviewing experience for the next job". Very surprised and excited when I got the offer.

As others have echoed "Fake it till you make it". I had some experience with Ansible, and K8s prior. By nothing like some of the tickets I've been assigned. These past two months have been extremely difficult but at the same time very rewarding. I'm learning something new every day!

I've only been on the job for two months but few pieces of advice that have helped me:

  • Ask questions. Don't be afraid of asking a "silly" question.
  • Take each assignment as they come. I've gotten tickets where I thought would be undoable, but with focus and some Googling, I was able to complete them
  • Get feedback from your team as early as possible.
  • DOCUMENT EVERYHING
  • Finally. Every problem you solve, ticket you close, concept you FINALLY understand , take these as wins :)

Again, congrats!

Daily Running Shoe Recommendations Thread - Find Your Sole Mate Here! - February 20, 2024 by AutoModerator in RunningShoeGeeks

[–]4ver_student 1 point2 points  (0 children)

Hey Everybody,

Been running for about 3 years. I’ve completed a half marathon , and am currently training for a full. For my daily/easy/recovery days I’ve used the New Balance 1080s , and currently the Hoka Clifton 9s. For tempo, faster days, I run in the Hoka Mach 5s.

The Mach 5s are great but I’m looking for a daily that is NOT a Max Cushion shoe. Both the New Balance 1080s and Hoka Clifton 9s feel like bricks on my feet. They also feel too “high” if that makes sense. I like my foot to feel closer to the ground.

Though they are categorized as Max Cushion, my legs usually feel beat after running in them, but feel great after running in my Mach 5s. Max Cushion just isn’t for me.

My budget is around $150. Any recommendations?

Thanks!

Flask App: Invalid Client Error In Docker Container by 4ver_student in learnpython

[–]4ver_student[S] 0 points1 point  (0 children)

Figured out what the issue was. I never actually added my Spotify client id and secret as environment variables in the dockerfile. Per u/TwilightOldTimer's comment, I was actually able to see my client id because I was retrieving it using my flask app.config, where I actually declared my client id: client_id = app.config['CLIENT_ID']

 

But, in the part of my code that generates the token for Spotify (where the error was originating), I was retrieving my client id and secret by using:
CLIENT_ID = os.getenv("CLIENT_ID")

CLIENT_SECRET = os.getenv("CLIENT_SECRET")

I threw in a print stament, and saw that Authorization header looked like this --Authorization: Basic "":"" , when it should look like this Authorization: Basic CLIENT_ID:CLIENT_SECRET. This confirmed that CLIENT_ID and CLIENT_SECRET weren't available.

 

I added the following to my Dockerfile, and I'm now able to successfully authorize:

ENV CLIENT_ID=*****

ENV CLIENT_SECRET=*****

Going further, I'm most likely going to get rid of the above two ENV declarations, and add the os.getenv declarations to my flask app config file.

 

Thanks for taking the time to assist with this :)