diff --git a/.dockerignore b/.dockerignore index e88c8ff..94cecb3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,8 +4,8 @@ node_modules/**/* node_modules -src/static/**/* -src/static +static/**/* +static scripts/**/* scripts diff --git a/.drone.yml b/.drone.yml index 237c634..5b98818 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,12 +1,15 @@ +--- # ---------------------------------------------- # -- Update the helm chart # ---------------------------------------------- kind: pipeline -type: docker +type: kubernetes name: Publish the helm chart + trigger: event: - push + steps: - name: Publish the Helm chart image: alpine/helm @@ -23,103 +26,203 @@ steps: # -- Build the site and push it to the registry # ---------------------------------------------- kind: pipeline -type: docker +type: kubernetes name: Build badhouseplants.net + trigger: event: - push -clone: - disable: true + steps: - - name: clone + - name: Download submodules with themes image: alpine/git - environment: - GIT_LFS_SKIP_SMUDGE: 0 commands: - - git clone $DRONE_REMOTE_URL . - - git checkout $DRONE_BRANCH - git submodule update --init --recursive + - name: Test a build - image: git.badhouseplants.net/badhouseplants/hugo-container - depends_on: - - clone + image: git.badhouseplants.net/badhouseplants/hugo-builder commands: - - hugo -s ./src + - hugo + - name: Build and push the docker image - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9665015b44590b7ce2139f7acbad23af6628fff3 - privileged: true - depends_on: - - Test a build - environment: - BUILDER_COMMIT: 2449b73b13a62ae916c6703778d096e5290157b3 - GITEA_TOKEN: + image: plugins/docker + when: + branch: + exclude: + - main + settings: + registry: git.badhouseplants.net + username: allanger + password: from_secret: GITEA_TOKEN + repo: git.badhouseplants.net/${DRONE_REPO} + tags: ${DRONE_COMMIT_SHA} + + - name: Build and push the docker image with latest + image: plugins/docker + when: + branch: + - main + settings: + registry: git.badhouseplants.net + username: allanger + password: + from_secret: GITEA_TOKEN + repo: git.badhouseplants.net/${DRONE_REPO} + tags: + - ${DRONE_COMMIT_SHA} + - latest + + - name: Download media files + image: alpine/git commands: - - rm -rf $DRONE_WORKSPACE/src/assets/ - - ./scripts/build-container.pl + - git lfs pull + - name: Sync pictures from lfs to Minio - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9665015b44590b7ce2139f7acbad23af6628fff3 - depends_on: - - Test a build + image: rclone/rclone:latest + when: + branch: + exclude: + - main environment: RCLONE_CONFIG_CONTENT: from_secret: RCLONE_CONFIG_CONTENT_PRIVATE RCLONE_CONFIG: /tmp/rclone.conf commands: - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG - - ./scripts/upload-media.pl - - name: Deploy the application - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9665015b44590b7ce2139f7acbad23af6628fff3 - depends_on: - - Build and push the docker image - - Sync pictures from lfs to Minio + - apk update + - apk add git make + - make upload_static + + - name: Sync pictures to the main Minio bucket + image: rclone/rclone:latest + when: + branch: + - main environment: - ARGOCD_SERVER: - from_secret: ARGOCD_SERVER - ARGOCD_AUTH_TOKEN: - from_secret: ARGOCD_AUTH_TOKEN + RCLONE_CONFIG_CONTENT: + from_secret: RCLONE_CONFIG_CONTENT_PRIVATE + RCLONE_CONFIG: /tmp/rclone.conf + commands: + - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG + - apk update + - apk add git make + - make sync_static_with_main + + - name: Deploy a preview ApplicationSet + image: alpine/k8s:1.24.10 + when: + branch: + exclude: + - main + environment: + KUBECONFIG_CONTENT: + from_secret: KUBECONFIG_CONTENT + commands: + - mkdir $HOME/.kube + - echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config + - apk update --no-cache && apk add yq gettext openssl + - export ARGO_APP_CHART_VERSION=`cat chart/Chart.yaml | yq '.version'` + - export ARGO_APP_BRANCH=$DRONE_BRANCH + - export ARGO_APP_HOSTNAME="${DRONE_BRANCH}-dev.badhouseplants.net" + - export ARGO_APP_IMAGE_TAG=$DRONE_COMMIT_SHA + - export ARGO_REMARK42_SECRET=$(openssl rand -hex 12) + - kubectl get -f ./kube/applicationset.yaml -o yaml > /tmp/appset.yaml + - yq -i "del(.metadata.resourceVersion)" /tmp/appset.yaml + - yq -i "del(.metadata.generation)" /tmp/appset.yaml + - yq -i "del(.metadata.uid)" /tmp/appset.yaml + - yq -i "del(.status)" /tmp/appset.yaml + - yq -i "del(.spec.generators[].list.elements[] | select(.branch == \"$ARGO_APP_BRANCH\"))" /tmp/appset.yaml + - envsubst < ./kube/template.yaml > /tmp/elements.yaml + - yq -i '.spec.generators[].list.elements += load("/tmp/elements.yaml")' /tmp/appset.yaml + - kubectl apply -f /tmp/appset.yaml + + - name: Deploy a main ApplicationSet + image: alpine/k8s:1.24.10 + when: + branch: + - main + environment: + KUBECONFIG_CONTENT: + from_secret: KUBECONFIG_CONTENT ARGO_GITHUB_OAUTH_KEY: from_secret: GITHUB_OAUTH_KEY ARGO_GOOGLE_OAUTH_KEY: from_secret: GOOGLE_OAUTH_KEY + commands: + - mkdir $HOME/.kube + - echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config + - apk update --no-cache && apk add yq gettext + - export ARGO_APP_CHART_VERSION=`cat chart/Chart.yaml | yq '.version'` + - export ARGO_APP_BRANCH=$DRONE_BRANCH + - export ARGO_APP_IMAGE_TAG=$DRONE_COMMIT_SHA + - kubectl get -f ./kube/applicationset.yaml -o yaml > /tmp/appset.yaml + - yq -i "del(.metadata.resourceVersion)" /tmp/appset.yaml + - yq -i "del(.metadata.generation)" /tmp/appset.yaml + - yq -i "del(.metadata.uid)" /tmp/appset.yaml + - yq -i "del(.status)" /tmp/appset.yaml + - yq -i "del(.spec.generators[].list.elements[] | select(.branch == \"$ARGO_APP_BRANCH\"))" /tmp/appset.yaml + - yq -i "del(.spec.generators[].list.elements[] | select(.commit_sha == \"$ARGO_APP_IMAGE_TAG\"))" /tmp/appset.yaml + - envsubst < ./kube/main.yaml > /tmp/elements.yaml + - yq -i '.spec.generators[].list.elements += load("/tmp/elements.yaml")' /tmp/appset.yaml + - kubectl apply -f /tmp/appset.yaml + + - name: Sync application + image: argoproj/argocd + environment: + ARGOCD_SERVER: + from_secret: ARGOCD_SERVER + ARGOCD_AUTH_TOKEN: + from_secret: ARGOCD_AUTH_TOKEN commands: - - ./scripts/deploy-app.pl + - argocd app sync -l app=badhouseplants -l branch=$DRONE_BRANCH + - argocd app wait -l app=badhouseplants -l branch=$DRONE_BRANCH + - name: Cleanup everything - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:9665015b44590b7ce2139f7acbad23af6628fff3 - depends_on: - - Deploy the application + image: rclone/rclone:latest environment: RCLONE_CONFIG_CONTENT: from_secret: RCLONE_CONFIG_CONTENT_PRIVATE RCLONE_CONFIG: /tmp/rclone.conf GITEA_TOKEN: from_secret: GITEA_TOKEN - ARGOCD_SERVER: - from_secret: ARGOCD_SERVER - ARGOCD_AUTH_TOKEN: - from_secret: ARGOCD_AUTH_TOKEN commands: - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG + - apk update + - apk add curl jq perl git - ./scripts/cleanup.pl + --- +# ---------------------------------------------- +# -- Upload a newer version of my CV +# ---------------------------------------------- kind: pipeline -type: docker -name: Spell-Checker +type: kubernetes +name: CV Builder + trigger: + branch: + - main event: - - push -clone: - disable: true + - push + steps: - - name: clone - image: alpine/git + - name: Build the CV + image: ghcr.io/puppeteer/puppeteer + commands: + - cp -R ./content/cv/* $HOME + - cd $HOME + - npm install md-to-pdf + - npx md-to-pdf index.md + - mkdir $DRONE_WORKSPACE/cv + - mv index.pdf $DRONE_WORKSPACE/cv/n.rodionov.pdf + + - name: Upload the CV + image: rclone/rclone:latest environment: - GIT_LFS_SKIP_SMUDGE: 1 + RCLONE_CONFIG_CONTENT: + from_secret: RCLONE_CONFIG_CONTENT_PRIVATE + RCLONE_CONFIG: /tmp/rclone.conf commands: - - git clone $DRONE_REMOTE_URL --recurse-submodules . - - git checkout $DRONE_BRANCH - - name: Spell-Checker - image: node - commands: - - npm i markdown-spellcheck -g - - mdspell "src/content/**/*.md" -n -r + - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG + - rclone copy -P $DRONE_WORKSPACE/cv badhouseplants-minio:/public-download diff --git a/.gitattributes b/.gitattributes index c2b8e77..ebc81d3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1 @@ -src/static/** filter=lfs diff=lfs merge=lfs -text -src/static/**/* filter=lfs diff=lfs merge=lfs -text +static/* filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore index de40ffb..436acc7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -src/node_modules -src/public -src/resources -.hugo_build.lock +node_modules +#static +content/cv/index.pdf +public +resources diff --git a/.gitmodules b/.gitmodules index 6c34b41..311fa4c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "src/themes/stack"] - path = src/themes/stack - url = https://github.com/CaiJimmy/hugo-theme-stack.git +[submodule "themes/papermod"] + path = themes/papermod + url = https://github.com/adityatelange/hugo-PaperMod.git diff --git a/src/content/music/_index.md b/.hugo_build.lock similarity index 100% rename from src/content/music/_index.md rename to .hugo_build.lock diff --git a/.spelling b/.spelling deleted file mode 100644 index 6cb1d43..0000000 --- a/.spelling +++ /dev/null @@ -1,161 +0,0 @@ -# markdown-spellcheck spelling configuration file -# Format - lines beginning # are comments -# global dictionary is at the start, file overrides afterwards -# one word per line, to define a file override use ' - filename' -# where filename is relative to this configuration file -WIP -envs -anymore -hostname -hostnames -Dockerfile -helmfile -k8s -env -dir -dev'n'stages -oi -minio -ArgoCD -setups -SRE -autoscaler -gitea -vendoring -cli -vpa -ok -cmp -config -GitOps -argo -argocding -cluster-1 -cluster-2 -cluster-3 -kubernetes -argocd -helmfiles -plugin -helmfile.yaml -cleanup -serie -backend -js -frontend -ShowToc -cover.png -allanger -DIY -DevOps -funkwhale -PSY -bandcamp -soundcloud -spotify -deezer -prog-rock -oveleane -IDM -gitlab -bitwarden -elasticsearch -grafana -lifecycle -auditable -the-first-production-grafaba -grafana -applicationsets -helm-releases-v2 -yaml -CR -minecraft -github -ddosed -VST -Xfer -plugins -yabridgectl -yabridge -DAW -polyverse -camelcrusher -standalone -url -glitchmachines -MacBook -configs -behaviour -FreqEcho -DSP -Supermassive -Ableton -Softube -center -iZotope -V2 -auth -README.md -TAL-Chorus-LX -badhouseplants -Deelay -Gatelab -Filterstep -Panflow -PaulXStretch -Audiomodern -Kushview -JUCE -Melda -MDrummer -GBs -laggy -MDrumReplacer -MPowerSynth -MGuitarArchitect -u-he -TyrellN6 -Tyrell -install.sh -MGuitarArchitect -Amazona.de. -Bitwig -ProjectSAM -Pendulate -Protoverb -Eurorack -S3 -XT -Ruina -VCV -LFO -beatmaker -wavetables -OSC -YOUTUBE -Twelve50TV -Robotik -McRoy -brah -aw -shite -lowrider -mdma -nah -clubby -MGK -params - - src/themes/papermod/README.md -PaperMod -hugo-paper -og -ExampleSite -exampleSite -pipelining -Fuse.js -webpack -nodejs -Pagespeed -Highlight.js -2023-02-25T14 -argocd-dynamic-environment-per-branch-part-1 diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index 3189887..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,93 +0,0 @@ ---- -when: - event: - - push - -steps: - - image: alpine/helm - name: Publish the Helm chart - commands: - - helm plugin install https://github.com/chartmuseum/helm-push - - helm package chart -d chart-package - - helm repo add --username allanger --password $GITEA_TOKEN badhouseplants-net https://git.badhouseplants.net/api/packages/badhouseplants/helm - - helm cm-push "./chart-package/$(ls chart-package)" badhouseplants-net - secrets: - - gitea_token - - - name: Test a build - image: git.badhouseplants.net/badhouseplants/hugo-container - commands: - - hugo -s ./src - - - name: Build and push the docker image - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest - privileged: true - depends_on: - - Test a build - secrets: - - gitea_token - environment: - BUILDER_COMMIT: 2449b73b13a62ae916c6703778d096e5290157b3 - commands: - - rm -rf $DRONE_WORKSPACE/src/assets/ - - ./scripts/build-container.pl - backend_options: - kubernetes: - resources: - requests: - memory: 500Mi - cpu: 200m - limits: - memory: 1000Mi - cpu: 1000m - securityContext: - privileged: true - - - name: Sync pictures from lfs to Minio - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest - depends_on: - - Test a build - secrets: - - rclone_config_content - environment: - RCLONE_CONFIG: /tmp/rclone.conf - commands: - - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG - - ./scripts/upload-media.pl - - - name: Deploy the application - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest - depends_on: - - Build and push the docker image - - Sync pictures from lfs to Minio - secrets: - - gitea_token - - argocd_auth_token - - argo_github_oauth_key - - argo_google_oauth_key - environment: - ARGOCD_SERVER: https://argo.badhouseplants.net:443 - commands: - - ./scripts/deploy-app.pl - - - name: Cleanup everything - image: git.badhouseplants.net/badhouseplants/badhouseplants-builder:latest - depends_on: - - Deploy the application - secrets: - - gitea_token - - argocd_auth_token - - rclone_config_content - environment: - ARGOCD_SERVER: argo.badhouseplants.net:443 - RCLONE_CONFIG: /tmp/rclone.conf - commands: - - echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG - - ./scripts/cleanup.pl - - - name: Spell-Checker - failure: ignore - image: node - commands: - - npm i markdown-spellcheck -g - - mdspell "src/content/**/*.md" -n -r diff --git a/Containerfile b/Containerfile deleted file mode 100644 index 9979a54..0000000 --- a/Containerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM git.badhouseplants.net/badhouseplants/hugo-container:43fd807fea2238853f48f95a435081d88857bb79 -WORKDIR /src -COPY ./src /src -ENTRYPOINT ["hugo"] diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5597fbc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM git.badhouseplants.net/badhouseplants/hugo-builder +WORKDIR /src +COPY . /src +RUN ls -la /src +ENTRYPOINT ["hugo"] diff --git a/Makefile b/Makefile index 943dcdb..d09c76d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,15 @@ -init: lfs submodules -lfs: - git lfs pull +upload_static: + rclone copy -P static badhouseplants-minio:/badhouseplants-net/$(shell git rev-parse HEAD)/ + +sync_static_with_main: + rclone sync -P badhouseplants-minio:/badhouseplants-net/$(shell git rev-parse HEAD)/ badhouseplants-minio:/badhouseplants-net-main/ + +get_static: + rclone copy -P badhouseplants-public:/badhouseplants-static static + +init_static: + rclone copy -P badhouseplants-public:/badhouseplants-static badhouseplants-minio:/badhouseplants-net/$(shell git rev-parse HEAD)/ + submodules: git submodule update --init --recursive diff --git a/README.md b/README.md index 7ca4a73..b10608b 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,4 @@ # Badhouseplants NET -## About -- To be done ## Static content Storing static content in the repo is painful, because there are massive. That's why for storing them I'm using a S3 bucket that is publicly available for downstream operations - - diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..d669718 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,12 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +ShowToc: true +cover: + image: "cover.png" + caption: "{{ replace .Name "-" " " | title }}" + relative: false + responsiveImages: false +--- + diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 96d4f43..409a1d4 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,10 +2,11 @@ apiVersion: v2 name: badhouseplants-net description: A Helm chart for Kubernetes type: application -version: 0.9.0 +version: 0.6.0 appVersion: "4.20.0" dependencies: - name: remark42 - version: 0.7.0 + version: 0.5.5 repository: https://groundhog2k.github.io/helm-charts/ condition: remark42.enabled + diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 7b0ee77..cdafb77 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -60,7 +60,7 @@ spec: volumeMounts: - name: {{ .Values.volumes.rclone.name }} mountPath: /src/static - readOnly: false + readOnly: true - name: {{ .Values.volumes.public.name }} mountPath: /src/public readOnly: false @@ -88,7 +88,7 @@ spec: volumes: - name: rclone-config secret: - secretName: rclone-config-{{ .Release.Name }} + secretName: rclone-config - name: {{ .Values.volumes.rclone.name }} emptyDir: sizeLimit: {{ .Values.volumes.rclone.sizeLimit }} @@ -97,5 +97,5 @@ spec: sizeLimit: {{ .Values.volumes.public.sizeLimit }} - name: nginx-config configMap: - name: nginx-config-{{ .Release.Name }} + name: nginx-config diff --git a/chart/templates/namespace.yaml b/chart/templates/namespace.yaml new file mode 100644 index 0000000..a16fa00 --- /dev/null +++ b/chart/templates/namespace.yaml @@ -0,0 +1,16 @@ +{{- if .Values.istio.enabled -}} +apiVersion: v1 +kind: Namespace +metadata: + name: {{ .Values.namespace.name }} + labels: + {{- include "badhouseplants-net.labels" . | nindent 4 }} + {{- range $key, $value := .Values.namespace.labels}} + {{ $key }}: {{ $value }} + {{- end }} + {{- with .Values.namespace.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +{{- end }} \ No newline at end of file diff --git a/chart/templates/nginx-config-cm.yaml b/chart/templates/nginx-config-cm.yaml index bcaab33..e8e1d38 100644 --- a/chart/templates/nginx-config-cm.yaml +++ b/chart/templates/nginx-config-cm.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: ConfigMap metadata: - name: nginx-config-{{ .Release.Name }} + name: nginx-config labels: {{- include "badhouseplants-net.labels" . | nindent 4 }} data: diff --git a/chart/templates/rclone-config-sec.yaml b/chart/templates/rclone-config-sec.yaml index bd529a7..8e20719 100644 --- a/chart/templates/rclone-config-sec.yaml +++ b/chart/templates/rclone-config-sec.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Secret metadata: - name: rclone-config-{{ .Release.Name }} + name: rclone-config labels: {{- include "badhouseplants-net.labels" . | nindent 4 }} type: generic diff --git a/chart/templates/virtual-service.yaml b/chart/templates/virtual-service.yaml new file mode 100644 index 0000000..0db7593 --- /dev/null +++ b/chart/templates/virtual-service.yaml @@ -0,0 +1,57 @@ +{{- if .Values.istio.enabled -}} +apiVersion: networking.istio.io/v1beta1 +kind: VirtualService +metadata: + name: {{ include "badhouseplants-net.fullname" . }} + labels: + {{- include "badhouseplants-net.labels" . | nindent 4 }} + {{- with .Values.istio.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + gateways: + - istio-system/badhouseplants-net + hosts: + {{- range .Values.istio.hosts}} + - {{ . }} + {{- end }} + http: + - match: + - uri: + prefix: {{ .Values.istio.prefix }} + route: + - destination: + host: {{ include "badhouseplants-net.fullname" . }} + port: + number: {{ .Values.service.port }} +{{- end }} +--- +{{- if .Values.remark42.istio.enabled -}} +apiVersion: networking.istio.io/v1beta1 +kind: VirtualService +metadata: + name: {{ include "remark42.fullname" . }}-remark42 + labels: + {{- include "badhouseplants-net.labels" . | nindent 4 }} + {{- with .Values.remark42.istio.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + gateways: + - istio-system/badhouseplants-net + hosts: + {{- range .Values.remark42.istio.hosts}} + - {{ . }} + {{- end }} + http: + - match: + - uri: + prefix: {{ .Values.remark42.istio.prefix }} + route: + - destination: + host: {{ .Release.Name }}-remark42 + port: + number: {{ .Values.remark42.service.port }} +{{- end }} diff --git a/chart/values.yaml b/chart/values.yaml index c0463a3..dadc637 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -1,5 +1,12 @@ replicaCount: 1 +namespace: + annotations: {} + labels: + istio-injection: enabled + enabled: true + name: badhouseplants-application + nginx: container: name: nginx @@ -30,7 +37,7 @@ hugo: container: name: badhouseplants-net resources: {} - image: + image: repository: git.badhouseplants.net/badhouseplants/badhouseplants-net pullPolicy: Always tag: latest @@ -39,19 +46,27 @@ hugo: env: HUGO_PARAMS_GITBRANCH: main +istio: + annotations: {} + enabled: true + hosts: + - badhouseplants.net + - www.badhouseplants.net + prefix: / + volumes: # ---------------------------------------------- - # -- An emptydir volume where hugo should + # -- An emptydir volume where hugo should # -- put the static content # ---------------------------------------------- public: name: public-content - sizeLimit: 1Gi + sizeLimit: 1Gi # ---------------------------------------------- - # -- An emptydir volume where rclone should + # -- An emptydir volume where rclone should # -- download pictures # ---------------------------------------------- - rclone: + rclone: name: s3-data sizeLimit: 1Gi diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..e1b92a9 --- /dev/null +++ b/config.yaml @@ -0,0 +1,70 @@ +#baseURL: 'https://badhouseplants.net/' +languageCode: 'en-us' +title: 'Bad Houseplants' +theme: 'papermod' +menu: + main: + - name: Posts + url: /posts + weight: 10 + - name: Music + url: /music + weight: 11 + - name: Beats + url: /beats + weight: 12 + - name: About + url: /about + weight: 13 + - name: Search + url: /search + weight: 14 +taxonomies: + tag: tags +params: + GitBranch: main + Remark42ID: remark + Remark42URL: https://remark42.badhouseplants.net + ShowBreadCrumbs: true + ShowReadingTime: true + ShowPostNavLinks: true + ShowCodeCopyButtons: true + comments: true + profileMode: + enabled: true + title: "Bad Houseplants" + subtitle: "... by allanger" + imageUrl: "Finish.png" + imageWidth: 150 + imageHeight: 150 + buttons: + - name: Source + url: "https://git.badhouseplants.net/badhouseplants/badhouseplants-net" + - name: My Music + url: "https://funkwhale.badhouseplants.net/library/artists" + socialIcons: + - name: "telegram" + url: "https://t.me/allanger" + - name: "twitter" + url: "https://twitter.com/_allanger" + - name: "mastodon" + url: "https://mastodon.social/@allanger" + - name: github + url: 'https://github.com/allanger' + - name: email + url: 'mailto:allanger@zohomail.com' + ShowShareButtons: true + ShareButtons: ["telegram", "twitter", "reddit", "linkedin"] + env: production + title: Bad Houseplants + description: "...by allanger" + keywords: [Blog, Portfolio] + author: allanger + DateFormat: "January 2, 2006" + defaultTheme: auto +outputs: + home: + - HTML + - RSS + - JSON + diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..97c9ac6 --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,27 @@ +--- +title: About +date: 2023-01-24T09:26:52+01:00 +draft: false +--- + + +It was supposed to be just yet another web page with musical releases reviews, but after trying to write something like that, I've found out that I'm not good at it. So I've decided to start a blog where I can write anything that comes to my mind. + + + + +> The last build is [![Build Status](https://drone.badhouseplants.net/api/badges/badhouseplants/badhouseplants-net/status.svg?ref=refs/heads/{{< param GitBranch >}})](https://drone.badhouseplants.net/badhouseplants/badhouseplants-net) + +### What is Bad Houseplants? + +> **allanger** +> +> *Actually, I'm not sure yet. I wanted it to be something about music, but I found out that musical industry is not very welcoming, and I don't know what exactly I > can do there. Creating music is somehow an intimate process to me, so I can't share a lot about it. The whole distributing thing is a black-box, and I wouldn't like to be a part of it, until anything is changed. I wanted to do musical reviews, but there are tons of guys who already do it a way better than I can. So I've given up on music here. I still hope that one day I'll open a recording studio under this name, but I'm not sure when it's even going to be possible. The second thing that I can talk about is IT. I think it can be interesting, but I don't want to kind of stigmatized as an IT blogger. And then I've decided that I would like to write something about indie culture, about DIY philosophy and all this punk related stuff. So let's say that is a blog about indie* + +### Wanna join? + +If you want to publish anything here, I don't mind. But for doing that you need to have at least basic `git` knowledge because this blog is written as code. You can check the [source code](https://git.badhouseplants.net/badhouseplants/badhouseplants-net) to understand if you're ready or not. I'm hosting my own `Gitea` instance, so you will have to request an account ([just email me](mailto:allanger@zohomail.com) or find me on [telegram](https://t.me/allanger)), when you got one, you're ready to start writing. If you have any questions about how to start, I'm always open for a conversation. + +Thanks, + +Oi! diff --git a/content/authors/allanger/_index.md b/content/authors/allanger/_index.md new file mode 100644 index 0000000..33377bf --- /dev/null +++ b/content/authors/allanger/_index.md @@ -0,0 +1,34 @@ +> If you're hiring, you can find [my CV here]({{< ref "cv" >}} ) + +I'm a musician and a geek, who works full time as a DevOps engineer, whatever it means. Thanks to my job, I know how to run self-hosted services pretty well, and that's helping me achieve my goal of bringing the indie culture everywhere I can. I'm trying to separate myself from global companies as a user as much as it's possible in my daily life. + +Also, I'm a Linux lover, what doesn't really correlate with my will to make music. I hope that one day we will see that developers will see that Linux is a real OS that can be used as a daily driver. And building software for Linux is important just like building for MacOS and Windows. I hope that we will be able to use not only open source solutions working on Linux, but also closed-source proprietary ones. + +### Music, Beats and Arrangements + +## Music + +> I always thought I was a musician +[Check out what I've got](https://funkwhale.badhouseplants.net) + +You can find everything I consider ready enough to be shown on my [FunkWhale](https://funkwhale.badhouseplants.net/library) instance. Also, my music can be found on many streaming services, and yes, I know that it's not a very independent way of doing things, but it's one of many exceptions ๐. + +All of my beats are waiting for somebody to do something with them. I'm giving them all for donation, so if you happen to like any, just shoot me a message. I can re-arrange and remix them as much as possible. I can mix your tracks, and I really will to do that, it doesn't matter what kind of music it is, I'm ready to work with everything, if I like it *(at least a little bit)*. + +## IT + +> I'm a DevOps after all +[Visit my gitea](https://git.badhouseplants.net) +For I'm a DevOps I'm working a lot with Kubernetes, Containers, Linux, etc. And that's the root of my intention to move to Linux completely. + +I hope I will do my contribution to the world of Linux music production too. I'm hosting my own Gitea instance. There you will be able to find all my code (or almost all of my code). + +If you made it to here, you might think that it's the point of all of this existing. Self-hosted blog, a music streaming service, and git. **This guy is just a fucking geek! ** + +And yes, you're partially right. The main reason it exists is that I'm trying to follow and promote `indie/punk` culture, that is not only applies to arts. And that's going to be covered in my posts, I hope. + +--- + +### If you're still here, + +I'm looking for people with the same mindset as me, to make music or to code together, or anything. So I would be happy to get connections on [Mastodon](https://mastodon.social/@allanger) diff --git a/content/beats/_index.md b/content/beats/_index.md new file mode 100644 index 0000000..a55385a --- /dev/null +++ b/content/beats/_index.md @@ -0,0 +1,63 @@ +--- +title: Beats +date: 2023-01-24T09:26:52+01:00 +draft: false +--- +>I don't lease my beats. If you happen to like anything, just shout me a message and we will come to an agreement. And if you decide to use any of my beats you'll be the only one using it (legally). + +--- +### Easy Money +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Monk +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Phantom Limb +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Ark +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Tremor +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Empty Cubicles +{{< rawhtml >}} + +{{< /rawhtml >}} + +### PSY +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Body Drop +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Broken Piano +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Dead Wings +{{< rawhtml >}} + +{{< /rawhtml >}} + +### Trapped +{{< rawhtml >}} + +{{< /rawhtml >}} + diff --git a/content/cv/index.md b/content/cv/index.md new file mode 100644 index 0000000..6806b52 --- /dev/null +++ b/content/cv/index.md @@ -0,0 +1,109 @@ +--- +title: "Curriculum Vitae (CV)" +date: 2023-02-11T18:29:00+01:00 +draft: false +ShowToc: true +--- +# Nikolai Rodionov + +``` +> Location: Dรผsseldorf, Germany +> Email: allanger@zohomail.com (preffered) +> Phone: 015223284008 +> Github: https://github.com/allanger +``` + +--- + +## About me +
+ +
+ +I'm a DevOps engineer (or SRE if you wish) with 5++ years of hands-on experience with a decent amount of tools that are most probably used or going to be used in your company. One of the most important tools that I love working with and want to continue working with, is Kubernetes. At least, while I don't see any better alternative to it. I think that containers themselves are one of coolest inventions in development, and I'm trying to use them as long as it's possible. Also, I believe that every routine must be automated, because routing is a boring job that lets people lose focus and make mistakes. + +I think that there are several things that a good SRE or DevOps engineer must be able to do: +- To build reliable and stable infrastructure +- Keep this infrastructure up-to-date +- Keep all the source and instructions of this infrastructure clean and simple +- Avoid a human factor as long as possible +- And when it's not possible to avoid it, not to be afraid to take responsibility + +Also, I think it's important that before implementing anything, an engineer has understood all the requirements and checked tools that can fulfil them. I often see, how people try to use a tool for its name but not for its functionality, and hence they have to do a lot of additional work and deal with compromises. And if nothing really can fulfil those requirements, you need not be afraid of writing something new *and open-source it*. + + + +## Experience + +**Grandcentrix**: SRE +> 02.2023 - until now + +``` +| Microsoft Azure +| Containers - Kubernetes - Helm - Kustomize +| PostgreSQL +| Bash - Python +| Prometheus - Grafana - Loki +| ArgoCD - Github Actions +| Sops +| Terraform +``` + +**Klรถckner-i**: DevOps Engineer +> 01.2022 - 01.2023 + +``` +| GCloud - Microsoft Azure +| Linux - Containers - Kubernetes - Helm - Helmfile +| Percona Mysql - Postgresql +| Bash +| Prometheus - Grafana - Elasticsearch - Kibana +| ArgoCD - Gitlab CI - Github Actions +| Sops +| Ansible +``` +--- + +**Itigris**: DevOps Engineer +> 07.2019 - 12.2021 + +``` +| AWS - Yandex Cloud +| Linux - Containers - Kubernetes - Helm - Helmfile - Kustomize +| Bash +| Gitlab CI - Drone - ArgoCD +| Postgresql - Redis +| Java - JS - Go +| Ansible - Terraform +| Prometheus - Grafana - Loki - Elasticsearch - Kibana +``` +--- + +**Etersoft**: DevOps Engineer +> 03.2017 - 06.2019 + +``` +| Bare metal - Proxmox - Virtual Box +| Linux - Containers - Networks +| Bash - Perl +| Mysql - Postgresql +| Minio - Ceph +| Gitlab CI +| Ansible +``` + + + +## A little bit more about me + +- I love to work with `Kubernetes`, but not with `yaml`. +- I'm a huge fan of [Helmfile](https://github.com/helmfile/helmfile). +- I have written several small cli tools in Rust, that you might find in my [GitHub profile pins](https://github.com/allanger) (they are not perfect, but I'm working on it). +- I'm contributing to [db-operator](https://github.com/kloeckner-i/db-operator). +- I'm trying to automate everything until I'm losing control over something that is automated. +- I love Perl, although I don't even remember how to write code with it, but I would be somehow thrilled to have any ability to work with it in production +- I also think that everything is better in Rust, or at least in Go *(if Bash is not enough)* + +I have a blog (written-as-code) that is deployed to K8s (https://badhouseplants.net/), with the source code stored in a self-hosted Gitea, that is also deployed to K8s alongside the CI/CD system where this blog is being built and published. This CV is also being built as a part of the CI process, and then uploaded to `minio` storage that is also ~~surprisingly~~ running in this cluster. So you can download the latest version of CV here:+@@ -13,7 +13,7 @@ var player = new Clappr.Player({ source: {{ .Get 0 }}, - mute: false, + mute: true, height: 360, width: 640 }); diff --git a/src/layouts/taxonomy/tag.html b/layouts/taxonomy/tag.html similarity index 100% rename from src/layouts/taxonomy/tag.html rename to layouts/taxonomy/tag.html diff --git a/scripts/build-container.pl b/scripts/build-container.pl deleted file mode 100755 index 2f39479..0000000 --- a/scripts/build-container.pl +++ /dev/null @@ -1,32 +0,0 @@ -#! /usr/bin/perl -use strict; -use warnings; -# ------------------------------------------------- -# -- Setup Git variables -# ------------------------------------------------- -my $git_branch = `git rev-parse --abbrev-ref HEAD`; -my $git_commit_sha = `git rev-parse HEAD`; -my $main_branch = "main"; -chomp($git_branch); -chomp($git_commit_sha); -# ------------------------------------------------- -# -- Build the image with SHA tag -# ------------------------------------------------- -my $container_registry = $ENV{'CONTAINER_REGISTRY'} || 'git.badhouseplants.net'; -my $image_name = $ENV{'DRONE_REPO'} || "badhouseplants/badhouseplants-net"; -my $tag = "$container_registry/$image_name:$git_commit_sha"; -my $username = $ENV{'DRONE_USERNAME'} || "allanger"; -my $password = $ENV{'GITEA_TOKEN'} || "YOU NOT AUTHORIZED, PAL"; -print `buildah login --username $username --password $password $container_registry` or die $!; -print `buildah build -t $tag .` or die $!; -print `buildah push $tag` or die $!; -# ------------------------------------------------- -# -- Push the latest if the branch is main -# ------------------------------------------------- -if ( $git_branch eq $main_branch) { - my $latest_tag = "$container_registry/$image_name:latest"; - print `buildah tag $tag $latest_tag` or die $!; - print `buildah push $latest_tag` or die $!; -} - -print "Thanks!\n"; diff --git a/scripts/cleanup.pl b/scripts/cleanup.pl index 4cb416d..a08ee93 100755 --- a/scripts/cleanup.pl +++ b/scripts/cleanup.pl @@ -3,25 +3,30 @@ use strict; use warnings; # -------------------------------------- +# -- Drone variables +# -------------------------------------- +my $drone_url="$ENV{'DRONE_SYSTEM_PROTO'}://$ENV{'DRONE_SYSTEM_HOST'}"; +my $drone_project=$ENV{'DRONE_REPO'}; +my $drone_api="$drone_url/api/repos/$drone_project/builds"; +# -------------------------------------- # -- Gitea variables # -------------------------------------- my $gitea_url=$ENV{'GITEA_URL'} || 'https://git.badhouseplants.net/api/v1'; my $gitea_org=$ENV{'GITEA_ORG'} || 'badhouseplants'; my $gitea_package=$ENV{'GITEA_PACKAGE'} || 'badhouseplants-net'; my $gitea_api="$gitea_url/packages/$gitea_org/container/$gitea_package"; -my $gitea_list_api="$gitea_url/packages/$gitea_org?page=1&type=container&q=badhouseplants-net"; my $gitea_token=$ENV{'GITEA_TOKEN'}; my $gitea_user=$ENV{'GITEA_USER'} || $ENV{'DRONE_COMMIT_AUTHOR'}; # --------------------------------------- -# -- Get tags from Gitea +# -- Get recent builds from drone-ci # --------------------------------------- -my $builds = "curl -X 'GET' \"$gitea_list_api\" -H 'accept: application/json' -H \"Authorization: token $gitea_token\" | jq -r '.[].version'"; +my $builds = "curl -X 'GET' $drone_api -H 'accept: application/json' | jq -r '.[].after'"; my @builds_out = `$builds`; chomp @builds_out; # --------------------------------------- # -- Get a list of all commits + 'latest' # --------------------------------------- -my $commits = "argocd app list -o yaml -l application=badhouseplants | yq '.[].metadata.labels.commit_sha'"; +my $commits = "git fetch && git log --format=format:%H --all"; my @commits_out = `$commits`; chomp @commits_out; push @commits_out, 'latest'; @@ -41,7 +46,7 @@ foreach my $line (@builds_out) { print "Checking if $line is in @commits_out\n\n"; if ( ! grep( /^$line$/, @commits_out ) ) { - my $cmd = "curl -X 'DELETE' -s \"$gitea_api/$line\" -H 'accept: application/json' -H \"Authorization: token $gitea_token\" || true"; + my $cmd = "curl -X 'DELETE' -s \"$gitea_api/$line\" -H 'accept: application/json' -u $gitea_user:$gitea_token || true"; print "Removing ${line}\n\n"; my $output = `$cmd`; print "$output \n"; diff --git a/scripts/deploy-app.pl b/scripts/deploy-app.pl deleted file mode 100755 index 7e53405..0000000 --- a/scripts/deploy-app.pl +++ /dev/null @@ -1,74 +0,0 @@ -#! /usr/bin/perl -use strict; -use warnings; - -my $chart_version = `cat chart/Chart.yaml | yq '.version'` or die $1; -chomp($chart_version); - -my $git_branch = `git rev-parse --abbrev-ref HEAD`; -chomp($git_branch); -my $git_commit_sha = `git rev-parse HEAD`; -chomp($git_commit_sha); - -my $main_branch = "main"; -my $values = ""; -my $remark_secret = `openssl rand -hex 12`; -chomp($remark_secret); - -$ENV{'ARGO_APP_CHART_VERSION'} = $chart_version; -$ENV{'ARGO_APP_BRANCH'} = $git_branch; -if ($git_branch eq $main_branch) { - $ENV{'ARGO_APP_NAMESPACE'} = "production"; -} else { - $ENV{'ARGO_APP_NAMESPACE'} = "development" -} -$ENV{'ARGO_APP_HOSTNAME'} = "$git_branch-dev.badhouseplants.net"; -$ENV{'ARGO_APP_IMAGE_TAG'} = $git_commit_sha; -$ENV{'ARGO_REMARK_SECRET'} = $remark_secret; - -# ---------------------------------- -# -- Fill the Application manifest -# -- with correct values -# ---------------------------------- -if ($git_branch eq $main_branch) { - print "Using the main values file\n"; - print `envsubst < ./kube/values-main.yaml > /tmp/values.yaml` or die $!; -} else { - print "Using the preview values file\n"; - print `envsubst < ./kube/values-preview.yaml > /tmp/values.yaml` or die $!; -} -print `yq -i '.values' /tmp/values.yaml` or die $!; -print `envsubst < ./kube/application.yaml > /tmp/application.yaml` or die $!; -print `yq -i '.spec.source.helm.values = load_str("/tmp/values.yaml")' /tmp/application.yaml` or die $!; - -if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){ - print `argocd app create -f /tmp/application.yaml --upsert` or die $!; - print `argocd app sync --prune -l application=badhouseplants -l branch=$git_branch` or die $!; - print `argocd app wait -l application=badhouseplants -l branch=$git_branch` or die $!; -} -# ---------------------------------- -# -- Remove all `Applications` for -# -- branches that do not exists -# ---------------------------------- -my @all_applications = `argocd app list -l application=badhouseplants -o yaml | yq '.[].metadata.name'` or die $!; -chomp(@all_applications); -foreach my $app (@all_applications) { - $app =~ s/badhouseplants-//; -} - -my @all_branches = `git branch --format='%(refname:short)' -r` or die $!; -chomp(@all_branches); -foreach my $branch (@all_branches) { - $branch =~ s/origin\///; -} - -foreach my $app (@all_applications) { - if ( !grep( /^$app$/, @all_branches ) ) { - if ($app ne "application") { - print "$app should be removed\n"; - if(!defined $ENV{DEPLOY_SCRIPT_DEBUG}){ - print `argocd app delete --yes badhouseplants-$app` or die $!; - } - } - } -} diff --git a/scripts/upload-media.pl b/scripts/upload-media.pl deleted file mode 100755 index 13eb20d..0000000 --- a/scripts/upload-media.pl +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/perl -my $git_branch = `git rev-parse --abbrev-ref HEAD`; -my $git_commit_sha = `git rev-parse HEAD`; -my $main_branch = "main"; -my $common_bucket = "badhouseplants-minio:/badhouseplants-net"; -my $main_bucket = "badhouseplants-minio:/badhouseplants-net-main"; - -# -------------------------------------------------- -# -- I'm doing all of it because I can't undestand -# -- how not to send 300Mb to the buildah context -# -------------------------------------------------- -chomp($git_branch); -chomp($git_commit_sha); - -print `cp -r . /tmp/$git_commit_sha` or die; - -print "Getting the lfs data\n"; -print `git -C /tmp/$git_commit_sha lfs pull` or die; - -print "Creating a new hashed dir in the common bucket\n"; - -print `rclone copy /tmp/$git_commit_sha/src/static "$common_bucket/$git_commit_sha"` or die; - -if ($git_branch eq $main_branch) { - print "Syncing to the production bucket\n"; - print `rclone sync "$common_bucket/$git_commit_sha" "$main_bucket/"` or die; -} diff --git a/scripts/upload-media.sh b/scripts/upload-media.sh new file mode 100755 index 0000000..1bdce97 --- /dev/null +++ b/scripts/upload-media.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -e + +#=== 'prev-commit' solution by o_O Tync +#commit_hash=$(git rev-parse --verify HEAD) +commit=$(git log -1 --pretty="%H%n%ci") # hash \n date +commit_date=$(echo "$commit" | head -2 | tail -1) # 2010-12-28 05:16:23 +0300 +commit_hash=$(echo "$commit" | head -1) +echo "$(git rev-parse HEAD)" > /tmp/test +echo "prev_commit='$commit_hash'\ndate='$commit_date'\nbranch='$branch'\n" > /tmp/test.txt diff --git a/src/archetypes/categories.md b/src/archetypes/categories.md deleted file mode 100644 index bde898d..0000000 --- a/src/archetypes/categories.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -image: -style: - background: "#2a9d8f" - color: "#fff" ---- diff --git a/src/archetypes/default.md b/src/archetypes/default.md deleted file mode 100644 index 0556d3a..0000000 --- a/src/archetypes/default.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -description: -date: {{ .Date }} -image: -math: -license: -hidden: false -comments: true -draft: true ---- \ No newline at end of file diff --git a/src/archetypes/tags.md b/src/archetypes/tags.md deleted file mode 100644 index bc2eb0c..0000000 --- a/src/archetypes/tags.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -description: -image: ---- diff --git a/src/content/_index.md b/src/content/_index.md deleted file mode 100644 index 530dfe8..0000000 --- a/src/content/_index.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -menu: - main: - name: Home - weight: -100 - params: - icon: home ---- \ No newline at end of file diff --git a/src/content/categories/Kubernetes/_index.md b/src/content/categories/Kubernetes/_index.md deleted file mode 100644 index 8ea9993..0000000 --- a/src/content/categories/Kubernetes/_index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Kubernetes" -description: "Content related to Kubernetes" -slug: "k8s" -image: "kubernetes.png" -style: - background: "#2a9d8f" - color: "#fff" ---- diff --git a/src/content/categories/Kubernetes/kubernetes.png b/src/content/categories/Kubernetes/kubernetes.png deleted file mode 100644 index 6b76951..0000000 Binary files a/src/content/categories/Kubernetes/kubernetes.png and /dev/null differ diff --git a/src/content/music/allanger/_index.md b/src/content/music/allanger/_index.md deleted file mode 100644 index 232db6f..0000000 --- a/src/content/music/allanger/_index.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "allanger" -date: 2018-12-26T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "/music/allanger.png" - caption: "allanger" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - alternative ---- - -I'm allanger, the owner of Bad Houseplants. diff --git a/src/content/music/allanger/allanger-anymore.md b/src/content/music/allanger/allanger-anymore.md deleted file mode 100644 index 6740326..0000000 --- a/src/content/music/allanger/allanger-anymore.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "allanger - Anymore" -date: 2018-12-26T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "/music/allanger-Anymore.jpg" - caption: "Anymore" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - alternative ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/anymore) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/20/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Anymore.zip)* diff --git a/src/content/music/allanger/allanger-await.md b/src/content/music/allanger/allanger-await.md deleted file mode 100644 index 11ad224..0000000 --- a/src/content/music/allanger/allanger-await.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "allanger - Await" -date: 2022-07-01T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "/music/allanger-Await.jpg" - caption: "Await" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - alternative - - hiphop - - rap ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/await) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/26/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Await.zip)* diff --git a/src/content/music/allanger/allanger-desensitized.md b/src/content/music/allanger/allanger-desensitized.md deleted file mode 100644 index e3f5abb..0000000 --- a/src/content/music/allanger/allanger-desensitized.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "allanger - Desensitized" -date: 2022-02-06T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Desensitized.png" - caption: "Desensitized" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - edm - - electronic ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/desensitized) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/22/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Desensitized.zip)* diff --git a/src/content/music/allanger/allanger-four-steps-behind copy.md b/src/content/music/allanger/allanger-four-steps-behind copy.md deleted file mode 100644 index 285138b..0000000 --- a/src/content/music/allanger/allanger-four-steps-behind copy.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "allanger - Under My Pillow" -date: 2023-05-15T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "/music/allanger-Under_My_Pillow.png" - caption: "Under My Pillow" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - rap - - hiphop ---- -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/under-my-pillow) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/27/) - ---- -{{< rawhtml >}} -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Under%20My%20Pillow.zip)* diff --git a/src/content/music/allanger/allanger-four-steps-behind.md b/src/content/music/allanger/allanger-four-steps-behind.md deleted file mode 100644 index b0ca05f..0000000 --- a/src/content/music/allanger/allanger-four-steps-behind.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "allanger - Four Steps Behind" -date: 2023-05-15T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "/music/allanger-Four_Steps_Behind.jpg" - caption: "Four Steps Behind" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - house - - edm ---- -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/four-steps-behind) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/16/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Four%20Steps%20Behind.zip)* diff --git a/src/content/music/allanger/allanger-let-me-kill.md b/src/content/music/allanger/allanger-let-me-kill.md deleted file mode 100644 index 01a21d3..0000000 --- a/src/content/music/allanger/allanger-let-me-kill.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "allanger - Let Me Kill" -date: 2021-10-15T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Let_Me_Kill.png" - caption: "Let Me Kill" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - trap - - spoken-word ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/let-me-kill) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/21/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Let%20Me%20Kill.zip)* diff --git a/src/content/music/allanger/allanger-not-alone.md b/src/content/music/allanger/allanger-not-alone.md deleted file mode 100644 index 43101bf..0000000 --- a/src/content/music/allanger/allanger-not-alone.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "allanger - Not Alone" -date: 2022-02-10T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Not_Alone.png" - caption: "Not Alone" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - edm - - electronic ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/not-alone) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/23/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Not%20Alone.zip)* diff --git a/src/content/music/allanger/allanger-out-of-law.md b/src/content/music/allanger/allanger-out-of-law.md deleted file mode 100644 index 9f38145..0000000 --- a/src/content/music/allanger/allanger-out-of-law.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "allanger - Out Of Law" -date: 2022-01-23T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Out_of_Law.png" - caption: "Out Of Law" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - punk ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/out-of-law) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/18/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Out%20Of%20Law.zip)* diff --git a/src/content/music/allanger/allanger-trace.md b/src/content/music/allanger/allanger-trace.md deleted file mode 100644 index 157832e..0000000 --- a/src/content/music/allanger/allanger-trace.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "allanger - Trace" -date: 2023-05-30T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Trace.png" - caption: "Trace" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - edm - - electronic ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/trace) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/17/) - ---- -{{< rawhtml >}} -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Trace.zip)* diff --git a/src/content/music/allanger/allanger-wasted-time.md b/src/content/music/allanger/allanger-wasted-time.md deleted file mode 100644 index a15306c..0000000 --- a/src/content/music/allanger/allanger-wasted-time.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "allanger - Wasted Time" -date: 2021-09-23T00:00:00+02:00 -draft: false -ShowToc: false -cover: - image: "music/allanger-Waster_Time.png" - caption: "Wasted Time" - relative: false - responsiveImages: false -hideSummary: true -tags: - - music - - release - - indie - - punk ---- - -[OPEN ON BANDCAMP](https://allanger.bandcamp.com/album/wasted-time) -- [OPEN ON FUNKWHALE](https://funkwhale.badhouseplants.net/library/albums/19/) - ---- -{{< rawhtml >}} - -{{< /rawhtml >}} - -*If you want to download lossless audio for free [follow this link](https://s3.badhouseplants.net/allanger-music/allanger%20-%20Wasted%20Time.zip)* diff --git a/src/content/page/about/index.md b/src/content/page/about/index.md deleted file mode 100644 index 77de357..0000000 --- a/src/content/page/about/index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: About -description: What is Bad Houseplants? -date: '2019-02-28' -aliases: - - about-us - - about-hugo - - contact -license: CC BY-NC-ND -lastmod: '2020-10-09' -menu: - main: - weight: -90 - params: - icon: user ---- - -Hello there, - -I'm **allanger** and I'm a DevOps engineer. What does it mean? I prefer calling myself a modern system administrator. Here I will post about DevOps/Kubernetes/CI-CD/etc topics. - -> This page is not ready yet, I will update it one day diff --git a/src/content/page/archives/index.md b/src/content/page/archives/index.md deleted file mode 100644 index 2862deb..0000000 --- a/src/content/page/archives/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Archives" -date: 2019-05-28 -layout: "archives" -slug: "archives" -menu: - main: - weight: -70 - params: - icon: archives ---- diff --git a/src/content/page/links/drone.png b/src/content/page/links/drone.png deleted file mode 100644 index ab43a7c..0000000 Binary files a/src/content/page/links/drone.png and /dev/null differ diff --git a/src/content/page/links/gitea.png b/src/content/page/links/gitea.png deleted file mode 100644 index bff7279..0000000 Binary files a/src/content/page/links/gitea.png and /dev/null differ diff --git a/src/content/page/links/index.md b/src/content/page/links/index.md deleted file mode 100644 index 15d7a47..0000000 --- a/src/content/page/links/index.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Links -readingTime: false -links: - - title: Source Code - description: A souce code of this blog - website: https://git.badhouseplants.net/badhouseplants/badhouseplants-net - image: gitea.png - - title: Drone-CI - description: A project for building this blog in Drone-CI - website: https://drone.badhouseplants.net/badhouseplants/badhouseplants-net - image: drone.png -menu: - main: - weight: -50 - params: - icon: link - -comments: false ---- diff --git a/src/content/page/links/ts-logo-128.jpg b/src/content/page/links/ts-logo-128.jpg deleted file mode 100644 index 85e3323..0000000 Binary files a/src/content/page/links/ts-logo-128.jpg and /dev/null differ diff --git a/src/content/page/search/index.md b/src/content/page/search/index.md deleted file mode 100644 index b2a5943..0000000 --- a/src/content/page/search/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Search" -slug: "search" -layout: "search" -outputs: - - html - - json -menu: - main: - weight: -60 - params: - icon: search ---- \ No newline at end of file diff --git a/src/content/post/allanger/do-we-need-continuous-reconciliation.md b/src/content/post/allanger/do-we-need-continuous-reconciliation.md deleted file mode 100644 index ffdf03f..0000000 --- a/src/content/post/allanger/do-we-need-continuous-reconciliation.md +++ /dev/null @@ -1,56 +0,0 @@ -+++ -title = 'Do we really need Continuous Reconciliation after all?' -date = 2024-02-13T15:04:44+01:00 -draft = true -categories = [ - "Kubernetes", - "CI-CD" -] -+++ - -> Well, alright, I guess it depends - -## Intro - -First, let's figure out what **continuous reconciliation** stands for. Considering this post's categories, I guess we're talking **Kubernetes** here. And **continuous reconciliation** means that resources deployed to kubernetes are not only synced once, when you run `kubectl apply`, but all the time. Basically, every 30s (or whatever reconciliation period you got) something is running `kubectl apply`. - -The idea behind that (as I see) is that you're always aware of what's deployed to you cluster, by looking at the code. Let's say, there is a git repo `k8s-deployments`, and it has all the resources that you want to have running in your cluster. - -> It made a lot of sense to when I heard for the first time, not I'm rather sceptical about it. - -As far as I understand, having all you resource described in a git repository and continuously reconciled is **GitOps**, not only that of course, it's just a part of it. At least that's what I've been told by some engineers. - -## GitOps - -I don't think that I'm the one to be talking about **GitOps** because everytime I was trying to bring my point on that, I've been told that I don't know what **GitOps** is. - -> To be honest, after many conversations with different people, I think that GitOps is just a buzzword for selling technologies and services, correct me if I wrong. - -I can't talk about others opinion, so I'll jsut try to express mine. I think that **GitOps** is when you have a desired state of your infrastucture written in code, and a mechanism to make your real infrastucture state correspond the desired one. - -Let's not lean towards Kubernetes itself, and let's imaging that you, as a SRE team, have to manage Kubernetes clusters. In your cluster you'll have to run an application that is being developed by the company you're working for, and some dependencies, that this application needs in order to run. - -> Also, I guess it is an opinion that many of SREs won't share. I guess that the SRE team shouldn't be integrated to development teams. In my opinion, SRE teams should provide ingfa-as-a-service to developes and help them use it. - -So, after all, you cluster will contain approximately this: -- Very base layer - - CNI plugin (E.G. Cilium) - - CoreDNS -- System layer - - Cert Manager - - Traefik -- Monitoring layer - - Kube Prometheus Stack - - Loki - - Promtail -- Application specific dependencies - - Zalando Postgres Operator - - Redis Operator -- Application layer - - Your application - -And as an addition, you might have a GitOps tool, currently, the most popular ones are **Flux** and **ArgoCD**, I guess I will compare them later, in this article let's just use **Flux**. - -First question that comes to my mind is, onto which layer one should put Flux? Flux depends on `CNI` and `CoreDNS`, so it should be deployed after them. So should it be the System layer? It sounds good, I guess, but do we want Flux to manage **Cert manager** and **Traefik**. Me - not, but the answer that I get the most is yes. So let's assume, we've decided to manage them with Flux. It means that we should add another layer between "Very base" and "System" ones, a **GitOps layer**. To us it means that after we get a bare new empty cluster, we need to install CNI, CoreDNS, and Flux, and only then we should deploy anything else with the Flux help. - -What does it mean for us, we need to diff --git a/src/hugo.yaml b/src/hugo.yaml deleted file mode 100644 index 1c17075..0000000 --- a/src/hugo.yaml +++ /dev/null @@ -1,45 +0,0 @@ -languageCode: en-us -title: Bad Houseplants -theme: stack -favicon: /favicon.ico -Params: - GitBranch: main - GitCommit: unknown - mainSections: - - post - sidebar: - avatar: - enable: true - local: false - src: /avatar.png - subtitle: PunkOps by allanger - comments: - enabled: true - provider: remark42 - remark42: - host: https://remark42.badhouseplants.net - site: remark - locale: en - widgets: - homepage: - - type: search - - type: archives - params: - limit: 5 - - type: categories - params: - limit: 10 - #- type: tag-cloud - # params: - # limit: 10 - page: - - type: toc -related: - includeNewer: true - threshold: 60 - toLower: false - indices: - - name: tags - weight: 100 - - name: categories - weight: 200 diff --git a/src/layouts/shortcodes/audio.html b/src/layouts/shortcodes/audio.html deleted file mode 100644 index ccaf315..0000000 --- a/src/layouts/shortcodes/audio.html +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/src/static/icons/beats.svg b/src/static/icons/beats.svg deleted file mode 100644 index d725db2..0000000 --- a/src/static/icons/beats.svg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11f41a9605317d89fb8ffc5f6e29a1b7db29e954a9d12ce98280c6d561548a75 -size 1253 diff --git a/src/static/posts/argocd-dynamic-environment-per-branch-part-1/cover.png b/src/static/posts/argocd-dynamic-environment-per-branch-part-1/cover.png deleted file mode 100644 index ee18b08..0000000 --- a/src/static/posts/argocd-dynamic-environment-per-branch-part-1/cover.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6f31eeedb306a5f06d2b7961050bdfbe78d78c7dbce8bdfa2829acee03ca4d7 -size 7963916 diff --git a/src/static/posts/argocd-vs-helmfile/cover-applications.png b/src/static/posts/argocd-vs-helmfile/cover-applications.png deleted file mode 100644 index 0e27218..0000000 --- a/src/static/posts/argocd-vs-helmfile/cover-applications.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:797fe98bbf2dc7dfae0a2876f22cca0b185afab3d928effc42bfee50fe6fb130 -size 299165 diff --git a/src/static/posts/argocd-vs-helmfile/cover-applicationset.png b/src/static/posts/argocd-vs-helmfile/cover-applicationset.png deleted file mode 100644 index e4b4ef4..0000000 --- a/src/static/posts/argocd-vs-helmfile/cover-applicationset.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1452560f3d6d04483eeca09d100370cc5fa7120294edc9c089c758a8f4b7253f -size 332000 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_final_result.mp3 b/src/static/posts/creating-a-sample-pack-kick/Kick_final_result.mp3 deleted file mode 100644 index 76b061d..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_final_result.mp3 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e0e778f9654025adba40dffc4cf78393b688ee865e61526b9ad8d6cc5191bb0 -size 805533 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v1.mp3 b/src/static/posts/creating-a-sample-pack-kick/Kick_v1.mp3 deleted file mode 100644 index d476df9..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v1.mp3 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:633d66327aa655eb6c586ee83d71feae841344534029321498cefa16aef5fd84 -size 165533 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mkv b/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mkv deleted file mode 100644 index 2c84b69..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mkv +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:74fd914e1b849336aca27c466843cf7e9a163fe8925a8167965e6fcba3f8e14a -size 604978 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mp4 b/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mp4 deleted file mode 100644 index 7bd8601..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v2.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee2e5c700e18277b70253df905fbaabf07bfa656d79f342bc3d0340f45d7b219 -size 311020 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mkv b/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mkv deleted file mode 100644 index 283c4fa..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mkv +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13d153f7d249431b295112bd93f21b2e52035e5c349a60ffb3852bc0ea200ce1 -size 528621 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mp4 b/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mp4 deleted file mode 100644 index b74a286..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v3.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:488311a0e6ea869a20cb12ef34ac9fcae983819e0e6144442f6809d30d3bcecf -size 292423 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mkv b/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mkv deleted file mode 100644 index 296ecf9..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mkv +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8fcf4d901648cef69b7106a8275d07de35fec4ac1cefdfe288ec67af7a4ecb5f -size 674171 diff --git a/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mp4 b/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mp4 deleted file mode 100644 index eb6947f..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/Kick_v4.mp4 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7281dc2f93cfba5731b2bd0d38c6530ca84a33b05cf8a3ecacee583a073fb5be -size 376034 diff --git a/src/static/posts/creating-a-sample-pack-kick/cover.png b/src/static/posts/creating-a-sample-pack-kick/cover.png deleted file mode 100644 index 8fb0642..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/cover.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d84081625a6b9cfb6a76948d076e02e00b626a1e288bca30d3f41879b09bf93d -size 1008850 diff --git a/src/static/posts/creating-a-sample-pack-kick/disable_note_track.png b/src/static/posts/creating-a-sample-pack-kick/disable_note_track.png deleted file mode 100644 index e12bb6b..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/disable_note_track.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d0f5650d0c4bc5d563bf340841d10c67631d5983d938a8e52847f5013ce7862 -size 974202 diff --git a/src/static/posts/creating-a-sample-pack-kick/init_vital.png b/src/static/posts/creating-a-sample-pack-kick/init_vital.png deleted file mode 100644 index dcb3ccc..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/init_vital.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:34532e0757db49204f854208fd09620dded5810262bd909b29df8ec985ee9496 -size 1242149 diff --git a/src/static/posts/creating-a-sample-pack-kick/kick_basic_shape.png b/src/static/posts/creating-a-sample-pack-kick/kick_basic_shape.png deleted file mode 100644 index 9a7a21d..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/kick_basic_shape.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eef68ec724e4467228eb20b04e9d62f89423925978e13ca2106d95ae86f0cb49 -size 94083 diff --git a/src/static/posts/creating-a-sample-pack-kick/kick_lfo_1.png b/src/static/posts/creating-a-sample-pack-kick/kick_lfo_1.png deleted file mode 100644 index 60a3704..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/kick_lfo_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a77078e09ad68001c5a5d05c0f41df49ab71958a8a1788cef84b3f0a1d943ca6 -size 133623 diff --git a/src/static/posts/creating-a-sample-pack-kick/kick_lfo_2.png b/src/static/posts/creating-a-sample-pack-kick/kick_lfo_2.png deleted file mode 100644 index 98bdae7..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/kick_lfo_2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab3b4fec7d092259b524e5b57e03d9ad35a01a87caccfe5d5a6b2dae3094bdd2 -size 133904 diff --git a/src/static/posts/creating-a-sample-pack-kick/unison_phase.png b/src/static/posts/creating-a-sample-pack-kick/unison_phase.png deleted file mode 100644 index b8e3fd1..0000000 --- a/src/static/posts/creating-a-sample-pack-kick/unison_phase.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:386fc8feea661abf218679d1d925994df5cbc7af2a3ee370a5c8eca206725812 -size 90664 diff --git a/src/static/posts/dont-use-argocd-for-infrastructure/cover.png b/src/static/posts/dont-use-argocd-for-infrastructure/cover.png deleted file mode 100644 index 7c32767..0000000 --- a/src/static/posts/dont-use-argocd-for-infrastructure/cover.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05312a326367af2694cda92759725d74a5a3d52a67577ea784724c76ae01c1dd -size 63751 diff --git a/src/themes/stack b/src/themes/stack deleted file mode 160000 index fddab05..0000000 --- a/src/themes/stack +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fddab053628070668cd9c9eb0b96d9a6246fcc71 diff --git a/src/static/avatar.png b/static/Finish.png similarity index 100% rename from src/static/avatar.png rename to static/Finish.png diff --git a/static/Logo.jpg b/static/Logo.jpg new file mode 100644 index 0000000..0c27319 --- /dev/null +++ b/static/Logo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7202b6aa5c651a18d7ec53375c509a5e06bd64f23423ef53d312c05376e1cc2c +size 398915 diff --git a/static/Type.png b/static/Type.png new file mode 100644 index 0000000..607496c --- /dev/null +++ b/static/Type.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f47009e4c2a81e75beb9dbe295be4842ed804db88cec5ac7056b16a55512637a +size 2020621 diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..e785708 --- /dev/null +++ b/static/android-chrome-192x192.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5da923b06b69780de08c3450e99793a266c615e535a1053c718d6ae9eb8cb35 +size 20377 diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..fb1798a --- /dev/null +++ b/static/android-chrome-512x512.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193f9db492edcc5a1202f85998675cc23dcf82a6666fcebe8a492c8c1dbe2673 +size 44441 diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..91a62b9 --- /dev/null +++ b/static/apple-touch-icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe8ae3cd0bc31b15c9e0d8e622a3019b969f07cf1692194dcad54c133f03925 +size 18092 diff --git a/src/static/posts/argocd-vs-helmfile/app-of-apps-main.png b/static/argocd-vs-helmfile/app-of-apps-main.png similarity index 100% rename from src/static/posts/argocd-vs-helmfile/app-of-apps-main.png rename to static/argocd-vs-helmfile/app-of-apps-main.png diff --git a/src/static/posts/argocd-vs-helmfile/applicationset-test.png b/static/argocd-vs-helmfile/applicationset-test.png similarity index 100% rename from src/static/posts/argocd-vs-helmfile/applicationset-test.png rename to static/argocd-vs-helmfile/applicationset-test.png diff --git a/src/static/posts/argocd-vs-helmfile/diff-in-ui.png b/static/argocd-vs-helmfile/diff-in-ui.png similarity index 100% rename from src/static/posts/argocd-vs-helmfile/diff-in-ui.png rename to static/argocd-vs-helmfile/diff-in-ui.png diff --git a/src/static/posts/argocd-vs-helmfile/goldilocks-ui.png b/static/argocd-vs-helmfile/goldilocks-ui.png similarity index 100% rename from src/static/posts/argocd-vs-helmfile/goldilocks-ui.png rename to static/argocd-vs-helmfile/goldilocks-ui.png diff --git a/src/static/posts/argocd-vs-helmfile/update-in-ui.png b/static/argocd-vs-helmfile/update-in-ui.png similarity index 100% rename from src/static/posts/argocd-vs-helmfile/update-in-ui.png rename to static/argocd-vs-helmfile/update-in-ui.png diff --git a/static/assets/favicon.ico b/static/assets/favicon.ico new file mode 100644 index 0000000..3221b47 --- /dev/null +++ b/static/assets/favicon.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c873c215333c27d52068b7adab5a61c3744405661e577fa239cdeeb7f7b4efb1 +size 13094 diff --git a/src/static/posts/dont-use-argocd-for-infrastructure/3-clusters-and-gitea.png b/static/dont-use-argocd-for-infrastructure/3-clusters-and-gitea.png similarity index 100% rename from src/static/posts/dont-use-argocd-for-infrastructure/3-clusters-and-gitea.png rename to static/dont-use-argocd-for-infrastructure/3-clusters-and-gitea.png diff --git a/src/static/posts/dont-use-argocd-for-infrastructure/3-clusters.png b/static/dont-use-argocd-for-infrastructure/3-clusters.png similarity index 100% rename from src/static/posts/dont-use-argocd-for-infrastructure/3-clusters.png rename to static/dont-use-argocd-for-infrastructure/3-clusters.png diff --git a/src/static/posts/argocd-dynamic-environment-per-branch-part-1/drone-pipeline.png b/static/dyn-envs/drone-pipeline.png similarity index 100% rename from src/static/posts/argocd-dynamic-environment-per-branch-part-1/drone-pipeline.png rename to static/dyn-envs/drone-pipeline.png diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..2c71d71 --- /dev/null +++ b/static/favicon-16x16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44436d4ce290289438e1f06101af312b83a535142b5a7cc8faa1e597a58d4c05 +size 585 diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..7ad9d34 --- /dev/null +++ b/static/favicon-32x32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168891830d9dcfb9146a4f907a50cfddfb4b06c9245cf65fa6398ff89edf127d +size 1501 diff --git a/src/static/favicon.ico b/static/favicon.ico similarity index 100% rename from src/static/favicon.ico rename to static/favicon.ico diff --git a/static/music/Oveleane - Four Steps Behind.jpg b/static/music/Oveleane - Four Steps Behind.jpg new file mode 100644 index 0000000..bc4b45c --- /dev/null +++ b/static/music/Oveleane - Four Steps Behind.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe51ea848995e26db8c88552ac057e286c66cc8e117280fac7149c4e42dd0e2 +size 2049438 diff --git a/static/music/allanger-Anymore.jpg b/static/music/allanger-Anymore.jpg new file mode 100644 index 0000000..b61b87c --- /dev/null +++ b/static/music/allanger-Anymore.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b9da09d850d01c9cb420c6b3a128c5395872f07461e4b0488f665bddfd9835 +size 1065466 diff --git a/static/music/allanger-Let_Me_Kill.png b/static/music/allanger-Let_Me_Kill.png new file mode 100644 index 0000000..bca3626 --- /dev/null +++ b/static/music/allanger-Let_Me_Kill.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c78774248cc5bddd94a3ed7f32680411e7ee2be64c0a2b0aed0ca2b03e2cc12 +size 9096807 diff --git a/static/music/allanger-Out_of_Law.png b/static/music/allanger-Out_of_Law.png new file mode 100644 index 0000000..a212a6d --- /dev/null +++ b/static/music/allanger-Out_of_Law.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac867a2e557c98b6fee62d405a55718a0b40401547d9a52a0c582de94ae5a0e +size 14588816 diff --git a/static/music/allanger-Waster_Time.png b/static/music/allanger-Waster_Time.png new file mode 100644 index 0000000..1e4f75e --- /dev/null +++ b/static/music/allanger-Waster_Time.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e42ea91f87e4162b5031edc9b99f3cc0e41077c924a2c85a245cb2c81e2fb6 +size 6004369 diff --git a/static/vst-on-linux-1/camel-crush.png b/static/vst-on-linux-1/camel-crush.png new file mode 100644 index 0000000..a28a527 --- /dev/null +++ b/static/vst-on-linux-1/camel-crush.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c298cbc2c38423baadaeab60b48064ecc04a96486765c41e90c9d8dd937816 +size 842713 diff --git a/static/vst-on-linux-1/glitchmachines.png b/static/vst-on-linux-1/glitchmachines.png new file mode 100644 index 0000000..ecf53bb --- /dev/null +++ b/static/vst-on-linux-1/glitchmachines.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23698e02dd5412beeba2edbae158464cf723a65f82849b5ba5e79b034197f40 +size 263703 diff --git a/static/vst-on-linux-1/glitchmaker-carla.gif b/static/vst-on-linux-1/glitchmaker-carla.gif new file mode 100644 index 0000000..ab1fa0f --- /dev/null +++ b/static/vst-on-linux-1/glitchmaker-carla.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d980570ae12bfb7564b87efbf1efad9040d1659325c888372bce32de3ebc91d +size 26935564 diff --git a/static/vst-on-linux-1/glitchmakesrs-glitch.gif b/static/vst-on-linux-1/glitchmakesrs-glitch.gif new file mode 100644 index 0000000..98e3395 --- /dev/null +++ b/static/vst-on-linux-1/glitchmakesrs-glitch.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f47cf8172c4ed6f91f53dd6dd6c3c46be7f8153e2a3d5de25c5d455dec14fb46 +size 17660362 diff --git a/static/vst-on-linux-1/ott-xfer.png b/static/vst-on-linux-1/ott-xfer.png new file mode 100644 index 0000000..0cea332 --- /dev/null +++ b/static/vst-on-linux-1/ott-xfer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9725d7977d3c36f1655ddfbaf6e57e53854e41d44ed67da36ae021eb18371f +size 279992 diff --git a/static/vst-on-linux-1/snap-heap.png b/static/vst-on-linux-1/snap-heap.png new file mode 100644 index 0000000..e094d5d --- /dev/null +++ b/static/vst-on-linux-1/snap-heap.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e7397856bceac94354abcf0e9df23c820f9bc743da800b6e020a2a9c78c082 +size 601331 diff --git a/static/vst-on-linux-1/tal-chorus.png b/static/vst-on-linux-1/tal-chorus.png new file mode 100644 index 0000000..752d3e2 --- /dev/null +++ b/static/vst-on-linux-1/tal-chorus.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15294da4f84b2f11627ee69be01cdaf3298e18e62e142d4e668e50cc4aee050 +size 214950 diff --git a/static/vst-on-linux-1/valhalla.png b/static/vst-on-linux-1/valhalla.png new file mode 100644 index 0000000..69286ed --- /dev/null +++ b/static/vst-on-linux-1/valhalla.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e748529ae61f471a5b88858b2f2edfed84f79db03f2ddfc32ed0071496b3a6 +size 326068 diff --git a/static/vst-on-linux-1/wider.png b/static/vst-on-linux-1/wider.png new file mode 100644 index 0000000..735e803 --- /dev/null +++ b/static/vst-on-linux-1/wider.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bbcad8a7c2e1a5d1c49022c4b7d30eb515b85cb9f37bbc0092204f64bbb898 +size 518231 diff --git a/static/vst-on-linux-2/cardinal.png b/static/vst-on-linux-2/cardinal.png new file mode 100644 index 0000000..d552ca8 --- /dev/null +++ b/static/vst-on-linux-2/cardinal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e2bdb61aaa10a0e15a550aca00a55d2f0a197c684d1a845b1c8a6c874ffb99 +size 424994 diff --git a/static/vst-on-linux-2/deelay-glitch.gif b/static/vst-on-linux-2/deelay-glitch.gif new file mode 100644 index 0000000..79b0fd4 --- /dev/null +++ b/static/vst-on-linux-2/deelay-glitch.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab3679098e5c7c19b6cabcd9b274a4ff5be9bd3880bfea24dc69c14a28291d4 +size 166217444 diff --git a/static/vst-on-linux-2/deelay.png b/static/vst-on-linux-2/deelay.png new file mode 100644 index 0000000..c582999 --- /dev/null +++ b/static/vst-on-linux-2/deelay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84b4accbdb7be7156730e024367cc57ee3c7b3c55b628ebe8b866baf9b0cf6d +size 437298 diff --git a/static/vst-on-linux-2/fire.png b/static/vst-on-linux-2/fire.png new file mode 100644 index 0000000..feccbfa --- /dev/null +++ b/static/vst-on-linux-2/fire.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7cc2ea5c4515e101f09ee82b3294af580b95ac6d7a30c4f80ed7746c897179 +size 382513 diff --git a/static/vst-on-linux-2/gatelab.png b/static/vst-on-linux-2/gatelab.png new file mode 100644 index 0000000..711a6f6 --- /dev/null +++ b/static/vst-on-linux-2/gatelab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162138d7c368b852bece411dd039482a15c596a2c33bfcf056afd7fdd847ffcf +size 320536 diff --git a/static/vst-on-linux-2/noise-engineering.png b/static/vst-on-linux-2/noise-engineering.png new file mode 100644 index 0000000..60cafae --- /dev/null +++ b/static/vst-on-linux-2/noise-engineering.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a3b2ea6b4396a918f6e1c25b51ed28b33093ac3c00d430cecf778551332631 +size 440546 diff --git a/static/vst-on-linux-2/panflow.png b/static/vst-on-linux-2/panflow.png new file mode 100644 index 0000000..d95efd3 --- /dev/null +++ b/static/vst-on-linux-2/panflow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec35f61c11bfe87de3107baeb56e7a31a49328d397cbc00a1ec2b50ab9f6c4 +size 270835 diff --git a/static/vst-on-linux-2/paulxstretch.png b/static/vst-on-linux-2/paulxstretch.png new file mode 100644 index 0000000..e053415 --- /dev/null +++ b/static/vst-on-linux-2/paulxstretch.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1818e1a95a280f004c7311a18812edab1e9436847e06ef5dd8402e5f09c645c +size 185558 diff --git a/static/vst-on-linux-2/runia-plugin.png b/static/vst-on-linux-2/runia-plugin.png new file mode 100644 index 0000000..51c9f99 --- /dev/null +++ b/static/vst-on-linux-2/runia-plugin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd23c468cade663d64694633d8486c49a590bc92b89169e4524bdcf0b9315ff +size 320187 diff --git a/static/vst-on-linux-2/sirt-plugin.png b/static/vst-on-linux-2/sirt-plugin.png new file mode 100644 index 0000000..b704162 --- /dev/null +++ b/static/vst-on-linux-2/sirt-plugin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162a4c1349fc74fd607932a2d084c6d1ae7702ad2d101d7eb52c9765d010a41b +size 396243 diff --git a/static/vst-on-linux-2/surge.png b/static/vst-on-linux-2/surge.png new file mode 100644 index 0000000..7bb4a75 --- /dev/null +++ b/static/vst-on-linux-2/surge.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a18fbe266596c92803737fbf96d1aaeb6a5aff6cc30052ddedfdd988bfd4f2dd +size 532448 diff --git a/static/vst-on-linux-2/virt-vereor.png b/static/vst-on-linux-2/virt-vereor.png new file mode 100644 index 0000000..b7c8e23 --- /dev/null +++ b/static/vst-on-linux-2/virt-vereor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce9d0528a0807b19e6a65e198f2efabb1433e6d462f600419e08ef79011bd56 +size 424311 diff --git a/static/vst-on-linux-3/eventide-pendulate.mp4 b/static/vst-on-linux-3/eventide-pendulate.mp4 new file mode 100644 index 0000000..ed3234a --- /dev/null +++ b/static/vst-on-linux-3/eventide-pendulate.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef76ca940fb050a6d26e75f27b9ec5effb87af8c10b5d8ba30152f1f42151a2 +size 6126500 diff --git a/static/vst-on-linux-3/labs-example.mp4 b/static/vst-on-linux-3/labs-example.mp4 new file mode 100644 index 0000000..f732108 --- /dev/null +++ b/static/vst-on-linux-3/labs-example.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566decff07913546a463f35bb9c0e47945b0366c9294b1afbc4bf89c04bd5eea +size 6973433 diff --git a/static/vst-on-linux-3/mdrummer-example-lfo.mp4 b/static/vst-on-linux-3/mdrummer-example-lfo.mp4 new file mode 100644 index 0000000..c0e74d2 --- /dev/null +++ b/static/vst-on-linux-3/mdrummer-example-lfo.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0313445baf62290fa6a8fa55b9d36554e3de7195ae3b898612bae23c1df557a5 +size 7651823 diff --git a/static/vst-on-linux-3/mdrummer-example.mp4 b/static/vst-on-linux-3/mdrummer-example.mp4 new file mode 100644 index 0000000..f297abe --- /dev/null +++ b/static/vst-on-linux-3/mdrummer-example.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b29483feaf48cb9baf01946f9da926ac25d8367110958de00a5a8fce1bc996 +size 7935948 diff --git a/static/vst-on-linux-3/mdrummer-lfo-carla.png b/static/vst-on-linux-3/mdrummer-lfo-carla.png new file mode 100644 index 0000000..ee89edd --- /dev/null +++ b/static/vst-on-linux-3/mdrummer-lfo-carla.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8e673858ef7bb279a89cf574ef29d56484f4258891e10716078072d001485b +size 321828 diff --git a/static/vst-on-linux-3/mdrummer.png b/static/vst-on-linux-3/mdrummer.png new file mode 100644 index 0000000..2c7e53d --- /dev/null +++ b/static/vst-on-linux-3/mdrummer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0874adf6e5bc5d15c5601f8a5dbdd710fd4e82d30e6e8e998cc5a7b3b989dcf +size 330065 diff --git a/static/vst-on-linux-3/mguitar-architect.mp4 b/static/vst-on-linux-3/mguitar-architect.mp4 new file mode 100644 index 0000000..56e7df6 --- /dev/null +++ b/static/vst-on-linux-3/mguitar-architect.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaa8b6a4e3e5b7f97d870dcba891eb486e89f8c13c879332bf3cb0d9734419e +size 5060479 diff --git a/static/vst-on-linux-3/mpower-synth.mp4 b/static/vst-on-linux-3/mpower-synth.mp4 new file mode 100644 index 0000000..e33bbdf --- /dev/null +++ b/static/vst-on-linux-3/mpower-synth.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8701ec9c674680f6ac84bd857aba76d11b22df6621cd1189efb28c326970e7 +size 3493304 diff --git a/static/vst-on-linux-3/native-access.png b/static/vst-on-linux-3/native-access.png new file mode 100644 index 0000000..f202ba5 --- /dev/null +++ b/static/vst-on-linux-3/native-access.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9247d5488be4c562b51b51db9eceb26afbfefd0c79d6802eaeeb39f5885bd4a7 +size 49413 diff --git a/static/vst-on-linux-3/protoverb.mp4 b/static/vst-on-linux-3/protoverb.mp4 new file mode 100644 index 0000000..45b0e55 --- /dev/null +++ b/static/vst-on-linux-3/protoverb.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63d449ec1896ee8856326c8b5c82372fd6e90e534320f1e1d00a97aa4033381 +size 7597907 diff --git a/static/vst-on-linux-3/space-piano.mp4 b/static/vst-on-linux-3/space-piano.mp4 new file mode 100644 index 0000000..52296f3 --- /dev/null +++ b/static/vst-on-linux-3/space-piano.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce96dcd3663dea25dafe601e006fdd6484ea1fd0fd575f0c705a8f67618b1d54 +size 11211344 diff --git a/static/vst-on-linux-3/spitfire-labs-app.png b/static/vst-on-linux-3/spitfire-labs-app.png new file mode 100644 index 0000000..8c20b06 --- /dev/null +++ b/static/vst-on-linux-3/spitfire-labs-app.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b180ddc8e021a57e3a5e9b5f8d6edbf951e34cfa73ca4d758262e8d9bbee36c4 +size 1309436 diff --git a/static/vst-on-linux-3/tyrell.mp4 b/static/vst-on-linux-3/tyrell.mp4 new file mode 100644 index 0000000..ada8551 --- /dev/null +++ b/static/vst-on-linux-3/tyrell.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c36ee6105ac53f6f08dbff13fe4fe66258ac9d0dc2522c155be9793e5288155 +size 4176960 diff --git a/static/vst-on-linux-3/vallhalla.mp4 b/static/vst-on-linux-3/vallhalla.mp4 new file mode 100644 index 0000000..0988550 --- /dev/null +++ b/static/vst-on-linux-3/vallhalla.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140102721033c63e0bbe47526e371fbefd7c3b204aa0c525a03574bac7ccc3bd +size 15858934 diff --git a/static/vst-on-linux-3/vcv-rack.mp4 b/static/vst-on-linux-3/vcv-rack.mp4 new file mode 100644 index 0000000..77e3667 --- /dev/null +++ b/static/vst-on-linux-3/vcv-rack.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44da75a3ba194cc1f4dc808e047acc20abfc4103c61e6199bcf093891ff453de +size 6165846 diff --git a/static/vst-on-linux-3/vital.mp4 b/static/vst-on-linux-3/vital.mp4 new file mode 100644 index 0000000..5ff3a94 --- /dev/null +++ b/static/vst-on-linux-3/vital.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d8edc10a5a0fd93b4eebd467bd5be640e8ffbf87bc8e9b3f8528e762812beb +size 6298246 diff --git a/static/vst-on-linux-3/vst-on-linix-3-cover.png b/static/vst-on-linux-3/vst-on-linix-3-cover.png new file mode 100644 index 0000000..d9c9685 --- /dev/null +++ b/static/vst-on-linux-3/vst-on-linix-3-cover.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72dd103d0002b201fc869b7f029d996093c1192d051bdd10475b7abda5e4994d +size 1106123 diff --git a/themes/papermod b/themes/papermod new file mode 160000 index 0000000..d3d90be --- /dev/null +++ b/themes/papermod @@ -0,0 +1 @@ +Subproject commit d3d90be8a4ea04433d95d02a1dc07b0014c5b8b8Comments are in the beta testing stage.
+