Join us

ContentUpdates and recent posts about Git..
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

State of App Dev: AI

64% of users find AI tools actually lighten the workload, yet 59% roll their eyes at the hype—function outshines flash.But behind the curtain, data prep still plays villain, tripping up 24% of AI builders... read more  

State of App Dev: AI
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

Streamlining application deployment on Kubernetes at RBC Capital Markets: A journey with FluxCD

RBC FinSec Incubatorlaunched with Rogers Cybersecure Catalyst to support fintech and cybersecurity startups in meeting financial sector needs... read more  

Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

Enforce admission policies with artifact attestations in Kubernetes using OPA Gatekeeper

OPA Gatekeeperups the ante on Kubernetes security. How? By enforcingGitHub Artifact Attestationswith the flair of a seasoned bouncer. Non-compliant images now get the boot before they even think about deployment... read more  

Enforce admission policies with artifact attestations in Kubernetes using OPA Gatekeeper
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

Kubernetes configuration as code – Gitea and ArgoCD

ArgoCDbrings serious application management chops to the table. But when it meets existingHelmsetups, chaos might ensue—junk those old secrets to clear the path... read more  

Kubernetes configuration as code – Gitea and ArgoCD
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

How To Run Kubernetes Commands in Go: Steps and Best Practices

Gocranks upKubernetesautomation, letting you tango directly with clusters at lightning speed. Forget clumsy shell scripts. Dive into Go's slick native libraries to conjure up CLI tools and seamless automation. Meanwhile, bask in rock-solid community support and run your masterpieces on any platform... read more  

How To Run Kubernetes Commands in Go: Steps and Best Practices
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

What's New in ArcGIS Enterprise 11.5 on Kubernetes

ArcGIS Enterprise 11.5onKubernetesjust lifted its game. It's rolling out support forStreetMap Premium, cranking up the speed with GPU nodes forNotebooks, and cozying up to the cloud viaVMware Tanzu. Expect faster GIS ops. There's also a shiny new file management UI for Notebooks, custom-built for yo.. read more  

What's New in ArcGIS Enterprise 11.5 on Kubernetes
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

How MacOS Tahoe's killer new feature could make Docker feel obsolete

macOS Tahoerolls out nativeLinux containersupport. Goodbye, third-party hoop-jumping with Docker. Hello, secure coding paradise. Developers rejoice!.. read more  

How MacOS Tahoe's killer new feature could make Docker feel obsolete
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

Hackers Exploit Misconfigured Docker APIs to Mine Cryptocurrency via Tor Network

Wiz Researchdives headfirst into the murky depths of150,000 cloud accounts. They unearth glaring vulnerabilities, pointing fingers at major lapses in data exposure and slipshod access controls... read more  

Hackers Exploit Misconfigured Docker APIs to Mine Cryptocurrency via Tor Network
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

ArgoCD: A Practical Guide to GitOps on Kubernetes

ArgoCD tackles giant deployments head-on, operating with a cunning pull-based model inside Kubernetes clusters. This clever move slashes the risk from exposed API keys and tightens security.LoveHolidays? They're jazzed. Their deploys skyrocket—over 1500 times a month. It’s a testament to ArgoCD's kn.. read more  

ArgoCD: A Practical Guide to GitOps on Kubernetes
Link
@faun shared a link, 11 months, 4 weeks ago
FAUN.dev()

I use these niche Docker containers to boost my productivity

Tududicorrals tasks and projects with tags, colors, and inboxes inside a nimble, containerized UI.Docmostmimics Notion with privacy-first spaces, block editing, and file embeds—no cloud lock-in.Syncthingsyncs files peer-to-peer, ditching cloud dependencies while keeping data always current.Grocyorch.. read more  

At its core, Git records snapshots of state, not just file diffs. Every commit represents a complete, immutable view of the project at a point in time, identified by a cryptographic hash. This makes history reliable, auditable, and cheap to branch.

Git is distributed by design. Every clone contains the full repository history, which allows developers and automation systems to work offline, create branches freely, and synchronize changes without relying on a central server for every operation.

In modern cloud-native workflows, Git acts as the source of truth. Desired state is declared in Git, reviewed through pull requests, and promoted across environments by merging changes rather than applying ad-hoc commands. This is the foundation of GitOps.

Git does not deploy anything by itself. Its role is to capture intent, history, and collaboration, while other tools turn that intent into running systems.