Skip to content

Instantly share code, notes, and snippets.

@paulomach
paulomach / commands.md
Last active April 17, 2023 11:02
Kubecon Operator Day 2023
@paulomach
paulomach / cheat_sheet_charms.md
Last active December 7, 2022 18:22
Charm cheat sheet

some useful charm dev commands

Info about published charm

> juju info

# basic data
juju info <charm-name>
@paulomach
paulomach / Makefile.md
Last active February 21, 2023 17:13
Makefile for k8s/vm charms

There's some mysql specifics, but it's mostly generic

help: ## show help message
	@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n  make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf "  \033[36m%-25s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)

SHELL    := /bin/bash
unit     := 0
app      := $(shell yq '.name' metadata.yaml)
scale    := 3