i was taking notes on this on the expectation to like the app
i did not
i hate it
rough draft of everything i dont want to just delete:
Postgres seems to not work correctly at the moment.
The first deploy will fail since the btree_gist
extension requires root to create.
This can be done manually with the following:
kubectl describe pod gitlab-postgres-0
Get the node this pod is running on, SSH to itrunc --root /run/containerd/runc/k8s.io/ exec -t --user 0 <CONTAINER ID> psql --user postgres
It will prompt for a password, get this password by running:--- | |
- name: Set up ArgoCD | |
hosts: kubernetes_master | |
tasks: | |
- name: Set up ArgoCD | |
environment: | |
KUBECONFIG: "{{ kubeconfig | default('~/.kube/config') }}" | |
block: | |
- name: Install Python Kubernetes module | |
become: true |
--- | |
- name: Set up ArgoCD | |
hosts: kubernetes_master | |
vars_prompt: | |
- name: "agekey" | |
prompt: "Enter the SECRET age key to use for SOPS" | |
private: true | |
tasks: | |
- name: Set up ArgoCD | |
environment: |
# This file contains pin mappings for the stock 2020 Creality Ender 3 | |
# V2. To use this config, during "make menuconfig" select the | |
# STM32F103 with a "28KiB bootloader" and serial (on USART1 PA10/PA9) | |
# communication. | |
# If you prefer a direct serial connection, in "make menuconfig" | |
# select "Enable extra low-level configuration options" and select | |
# serial (on USART3 PB11/PB10), which is broken out on the 10 pin IDC | |
# cable used for the LCD module as follows: | |
# 3: Tx, 4: Rx, 9: GND, 10: VCC |
# Replace 192.168.1.1 with your Moonraker IP | |
# I suffix "_ender3" in these, feel free to replace that too | |
sensor: | |
- platform: rest | |
name: klipper_ender3 | |
resource: "http://192.168.1.1:7125/printer/objects/query?heater_bed&extruder&print_stats&toolhead&display_status&virtual_sdcard&gcode_move&webhooks&temperature_sensor mcu_temp&temperature_sensor pi_temp&filament_switch_sensor Filament" | |
json_attributes_path: "$.result.status" | |
json_attributes: | |
- heater_bed |
--- | |
### | |
# This play builds a VyOS qcow2 image | |
### | |
- name: Set up vyos-vm-images repo | |
hosts: localhost | |
tags: vyos, prepare-build, build | |
gather_facts: false | |
tasks: | |
- name: Clone vyos-vm-images repo |
--- | |
# Set the input | |
- name: Set example input | |
ansible.builtin.set_fact: | |
day1_input: |- | |
1abc2 | |
pqr3stu8vwx | |
a1b2c3d4e5f | |
treb7uchet | |
when: day1_input is not defined |