This file contains hidden or 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/local/bin/bash | |
# | |
# This script takes any certificates found from the ACME client plugin in OPNSense and copies them to one or more namespaces in kubernetes. | |
# Useful for setting as an automation script in the ACME plugin. | |
# | |
# Required env variables: KUBE_TOKEN, KUBE_HOST | |
# Optional variables: KUBE_PORT, NAMESPACES (space separated string of namespaces) | |
# | |
# NOTE: This script requires you to install base64 and bash. Run `pkg install base64 bash` |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: foundry | |
labels: | |
app: foundry | |
spec: | |
replicas: 1 | |
selector: |
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: peertube | |
labels: | |
app: peertube | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: pihole | |
labels: | |
app: pihole | |
spec: | |
replicas: 1 | |
selector: |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: paperless | |
labels: | |
app: paperless | |
spec: | |
replicas: 1 | |
selector: |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: pihole | |
namespace: wfs | |
labels: | |
app: pihole | |
spec: | |
replicas: 1 |
This file contains hidden or 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
''' | |
Issues: | |
- Size of written file not identical to size crated by `rbd export-diff` command. | |
- Total size of extents does not equal diff-size | |
''' | |
offsets = [] | |
extents = [] | |
def iter_cb(offset, length, exists): |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: archivewarrior | |
labels: | |
app: archivewarrior | |
spec: | |
replicas: 1 | |
selector: |
This file contains hidden or 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
TASK [kubernetes/preinstall : Pre-upgrade | move data from old credential dir to new] **************************************************************************************************************************************************** | |
Wednesday 07 August 2019 20:26:29 -0400 (0:00:00.064) 0:00:25.751 ****** | |
TASK [kubernetes/preinstall : set architecture_groups] *********************************************************************************************************************************************************************************** | |
Wednesday 07 August 2019 20:26:29 -0400 (0:00:00.055) 0:00:25.806 ****** | |
ok: [kube2] | |
ok: [kube4] | |
TASK [kubernetes/preinstall : ansible_architecture_rename] ******************************************************************************************************************************************************************************* | |
Wednesday 07 August 2019 20:26:29 -0400 (0:00:00.221) 0:00:26.027 ****** |
This file contains hidden or 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
--- | |
kind: Service | |
apiVersion: v1 | |
metadata: | |
name: plex-udp | |
annotations: | |
metallb.universe.tf/address-pool: production-public-ips | |
metallb.universe.tf/allow-shared-ip: plex | |
spec: | |
selector: |
NewerOlder