This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import typer | |
app = typer.Typer() | |
@app.callback(invoke_without_command=True) | |
def default(ctx: typer.Context): | |
typer.echo(ctx.get_help()) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Kubernetes configuration dirs and system namespace. | |
# Those are where all the additional config stuff goes | |
# the kubernetes normally puts in /srv/kubernetes. | |
# This puts them in a sane location and namespace. | |
# Editing those values will almost surely break something. | |
kube_config_dir: /etc/kubernetes | |
kube_script_dir: "{{ bin_dir }}/kubernetes-scripts" | |
kube_manifest_dir: "{{ kube_config_dir }}/manifests" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kubernetes configuration dirs and system namespace. | |
# Those are where all the additional config stuff goes | |
# the kubernetes normally puts in /srv/kubernetes. | |
# This puts them in a sane location and namespace. | |
# Editing those values will almost surely break something. | |
kube_config_dir: /etc/kubernetes | |
kube_script_dir: "{{ bin_dir }}/kubernetes-scripts" | |
kube_manifest_dir: "{{ kube_config_dir }}/manifests" | |
# This is where all the cert scripts and certs will be located |