See also https://github.com/music-assistant/server/blob/dev/DEVELOPMENT.md
The development documentation does not mention how to build a modified version locally.
The Dockerfile loads the music assistant server wheel package from the dist folder.
| # Bash completion for ssh-add | |
| _ssh_add() { | |
| local cur prev words cword | |
| _init_completion || return | |
| local flags=( | |
| -l --list | |
| -L --list-public | |
| -d --delete |
See also https://github.com/music-assistant/server/blob/dev/DEVELOPMENT.md
The development documentation does not mention how to build a modified version locally.
The Dockerfile loads the music assistant server wheel package from the dist folder.
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>mwd.sleepMac</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/path/to/sleepMac.sh</string> | |
| </array> |
| Aspect or Feature | kubernetes/ingress-nginx | nginxinc/kubernetes-ingress with NGINX | nginxinc/kubernetes-ingress with NGINX Plus |
|---|---|---|---|
| Fundamental | |||
| Authors | Kubernetes community | NGINX Inc and community | NGINX Inc and community |
| NGINX version | Custom NGINX build that includes several third-party modules | NGINX official mainline build | NGINX Plus |
| Commercial support | N/A | N/A | Included |
| Implemented in | Go/Lua (while Nginx is written in C) | Go/Python | Go/Python |
| Load balancing configuration via the Ingress resource |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| # any name can be used; Velero uses the labels (below) | |
| # to identify it rather than the name | |
| name: change-storage-class-config | |
| # must be in the velero namespace | |
| namespace: velero | |
| # the below labels should be used verbatim in your | |
| # ConfigMap. |
| function! ToggleRawMode() | |
| let notraw = ((&signcolumn != 'no') || &number || &conceallevel) | |
| if notraw | |
| let b:signcolumn_saved=&signcolumn | |
| set signcolumn=no | |
| let b:conceallevel_saved=&conceallevel |
| # Turn of bluetooth before sleep | |
| /usr/local/bin/blueutil -p 0 |
| FROM nginx:alpine AS builder | |
| # nginx:alpine contains NGINX_VERSION environment variable, like so: | |
| # ENV NGINX_VERSION 1.15.0 | |
| # Our NCHAN version | |
| ENV NCHAN_VERSION 1.1.15 | |
| # Download sources | |
| RUN wget "http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz" -O nginx.tar.gz && \ |
https://kubernetes.io/docs/tasks/debug-application-cluster/debug-cluster/#looking-at-logs
sudo journalctl -u kube-apiserver --follow
see https://kubernetes.io/docs/reference/kubectl/cheatsheet/