Skip to content

Instantly share code, notes, and snippets.

@lokeshrangineni
lokeshrangineni / postgres-tls-helm-export.yaml
Created February 25, 2025 11:19
postgres-tls-helm-export.yaml
---
# Source: postgresql/templates/primary/networkpolicy.yaml
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: postgresql
namespace: "feast"
labels:
app.kubernetes.io/instance: postgresql
app.kubernetes.io/managed-by: Helm
@lokeshrangineni
lokeshrangineni / Kubeflow_on_ Mac_ M3.md
Created September 10, 2024 18:39 — forked from dmartinol/Kubeflow_on_ Mac_ M3.md
Kubeflow installation on Mac M3 Pro

Install and Configure Kubeflow on Mac M3 Pro

Last update: Sep 10, 2024

Goal

This gist provides a validated procedure to install the complete Kubeflow platform on a Mac with an ARM chip (M3 Pro).

As of September 2024, no [packaged distributions][packaged-distros] are available for this setup, so we'll be using [Kubeflow Manifests][kf-manifests] to deploy the software.

Additionally, we'll also install a default [Model Registry][model-registry] instance and validate the setup.

@lokeshrangineni
lokeshrangineni / dockerWithColima.sh
Last active January 16, 2024 21:45
Docker Colima without docker desktop cheat sheet
### Setting up docker and colima.
brew install colima
brew install docker docker-compose
mkdir -p ~/.docker/cli-plugins
# symlink the docker-compose command into that new folde
ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
# Need this to build some containers.
brew install docker-Buildx
#symlink it to the cli-plugins
ln -sfn $(brew --prefix)/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx