Skip to content

Commit

Permalink
Merge pull request #1283 from KBVE/patch-kbve-deploy-b0a067616472cf9c…
Browse files Browse the repository at this point in the history
…8d403d23f79c0ef305fcf3656115c80686c2093ac88e2928

Pulling refs/heads/patch-kbve-deploy-b0a067616472cf9c8d403d23f79c0ef305fcf3656115c80686c2093ac88e2928 into Dev
  • Loading branch information
h0lybyte authored Oct 2, 2024
2 parents f898204 + aa7262d commit 181705c
Show file tree
Hide file tree
Showing 1,284 changed files with 5,817 additions and 2,298 deletions.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/advanced/technical-specifications/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/api/graph.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/android/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/ansible/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/appwrite/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/authelia/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/cubejs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/docker/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/flipperzero/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/flutter/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/gcloud/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/git/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/godot/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/javascript/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/kubernetes/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/linux/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/longhorn/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/ml/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/n8n/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/nginx/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/nmap/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/nomad/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/obs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/php/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/pocketbase/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/application/portainer/index.html

Large diffs are not rendered by default.

230 changes: 230 additions & 0 deletions docs/application/postgres/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/proxmox/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/python/index.html

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions docs/application/redis/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/rust/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/sql/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/terraform/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/traefik/index.html

Large diffs are not rendered by default.

48 changes: 39 additions & 9 deletions docs/application/unity/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/application/v01d/index.html

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions docs/application/wireguard/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/construction/custom-solutions/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/construction/project-planning/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/construction/safety/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/construction/service-overview/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/crypto/btc/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/crypto/doge/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/crypto/eth/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/crypto/index.html

Large diffs are not rendered by default.

93 changes: 66 additions & 27 deletions docs/data/scripts/kube/etc/generate-sealed-secret.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/bash

usage() {
echo "Usage: $0 -n <namespace> -k <keyName> -s <secrets>"
echo " -n The namespace for the secret (e.g., 'default' or 'my-namespace')"
echo " -k The name of the secret (e.g., 'pgsodium-secret')"
echo " -s The secrets in 'key=value&key2=value2' format (e.g., 'key1=value1&key2=value2')"
exit 1
}

check_inputs() {
if [ -z "$NAMESPACE" ] || [ -z "$KEY_NAME" ] || [ -z "$SECRETS" ]; then
echo "Error: Missing required arguments."
Expand All @@ -19,44 +27,75 @@ check_dependencies() {
fi
}

# Function to check if the 'armada' namespace exists
check_armada_namespace() {
if ! kubectl get namespace "armada" &> /dev/null; then
echo "Error: The namespace 'armada' does not exist. Please ensure the Sealed Secrets operator is running in the 'armada' namespace."
exit 1
else
echo "Namespace 'armada' is present."
fi
}


# Function to create a temporary secret YAML in memory and output it
create_temp_secret() {
# Generate the kubectl command to create the secret in dry-run mode and output as YAML
SECRET_CMD="kubectl create secret generic $KEY_NAME --namespace $NAMESPACE"


# Split SECRETS input by '&' and add each key-value pair to SECRET_CMD
IFS='&' read -ra SECRETS_ARRAY <<< "$SECRETS"
for secret in "${SECRETS_ARRAY[@]}"; do
SECRET_CMD="$SECRET_CMD --from-literal=$secret"
if [[ "$secret" =~ ^[a-zA-Z0-9_\-]+=[a-zA-Z0-9_\-]+$ ]]; then
SECRET_CMD="$SECRET_CMD --from-literal=$secret"
else
echo "Error: Invalid secret format '$secret'. Must be in 'key=value' format."
exit 1
fi
done

TEMP_SECRET_YAML="temp-secret.yaml"
$SECRET_CMD --dry-run=client -o yaml > $TEMP_SECRET_YAML

echo "Temporary secret created: $TEMP_SECRET_YAML"
# Run the kubectl command in dry-run mode and capture the output in TEMP_SECRET_YAML variable
TEMP_SECRET_YAML=$(eval "$SECRET_CMD --dry-run=client -o yaml")
}

seal_secret() {
SEALED_SECRET_YAML="sealed-temp-secret.yaml"
kubeseal --controller-name=sealed-secrets --controller-namespace=armada < $TEMP_SECRET_YAML > $SEALED_SECRET_YAML

echo "Sealed secret created: $SEALED_SECRET_YAML"
seal_secret() {
echo "$TEMP_SECRET_YAML" | kubeseal --controller-name=sealed-secrets --controller-namespace=armada --format=yaml
}

cleanup_temp_files() {
cat $SEALED_SECRET_YAML
rm -f $TEMP_SECRET_YAML
rm -f $SEALED_SECRET_YAML
echo "Temporary files cleaned up."
}
# Parse arguments using getopts
NAMESPACE=""
KEY_NAME=""
SECRETS=""

main() {
check_inputs
check_dependencies
create_temp_secret
seal_secret
cleanup_temp_files
}
while [[ $# -gt 0 ]]; do
case $1 in
-n|--namespace)
NAMESPACE="$2"
shift 2
;;
-k|--keyName)
KEY_NAME="$2"
shift 2
;;
-s|--secrets)
SECRETS="$2"
shift 2
;;
*)
usage
;;
esac
done

# Check inputs and dependencies
if [ -z "$NAMESPACE" ] || [ -z "$KEY_NAME" ] || [ -z "$SECRETS" ]; then
usage
fi

NAMESPACE=$1
KEY_NAME=$2
SECRETS=$3
check_dependencies
check_armada_namespace

main
# Create and seal the secret in memory and output the sealed YAML directly
create_temp_secret
seal_secret
6 changes: 3 additions & 3 deletions docs/de/advanced/technical-specifications/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/android/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/ansible/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/appwrite/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/authelia/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/cubejs/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/docker/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/flipperzero/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/flutter/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/gcloud/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/git/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/godot/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/javascript/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/kubernetes/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/linux/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/longhorn/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/ml/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/n8n/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/nginx/index.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/de/application/nmap/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/nomad/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/obs/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/php/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/pocketbase/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/application/portainer/index.html

Large diffs are not rendered by default.

230 changes: 230 additions & 0 deletions docs/de/application/postgres/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/proxmox/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/python/index.html

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions docs/de/application/redis/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/rust/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/sql/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/terraform/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/traefik/index.html

Large diffs are not rendered by default.

46 changes: 38 additions & 8 deletions docs/de/application/unity/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/application/v01d/index.html

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions docs/de/application/wireguard/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/construction/custom-solutions/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/construction/project-planning/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/construction/safety/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/construction/service-overview/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/crypto/btc/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/crypto/doge/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/crypto/eth/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/crypto/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/gaming/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/gaming/lol/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/gaming/rimworld/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/gaming/titanfall/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/guides/first-project-checklist/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/guides/getting-started/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/de/guides/intro/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/food/candy/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/food/fish/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/food/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/potion/alchemist/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/potion/evesbar/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/itemdb/potion/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/maps/ccc/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/ambient/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/chillstep/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/dnb/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/edm/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/electroswing/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/kbve/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/lofihiphop/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/nujazz/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/rock/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/music/studybeats/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/npcdb/citizen/chip/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/npcdb/citizen/fudster/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/npcdb/citizen/ignatius-hollow/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/npcdb/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/api/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/ar/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/atlas/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/charles/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/cityvote/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/cryptothrone/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/graph/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/herbmail/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/lofifocus/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/rareicon/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/project/vip/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/recipe/mango-juice/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/recipe/mcconaughey-diet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/shop/services/ai-tools/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/shop/services/api-development/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/shop/services/data-storage/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/shop/services/software-automation/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/stock/aapl/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/stock/tsla/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/automation/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/deadcode/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/emulation/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/programming/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/socialmedia/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/solarpunk/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/theory/swartz-guerilla-manifesto/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/tools/conch/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/tools/equipment-care/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/tools/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/tools/tool-guides/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/travel/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/webmaster/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/de/welcome-to-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
</script><template id="theme-icons"><svg aria-hidden="true" class="light astro-g5uffdu7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M5 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1Zm.64 5-.71.71a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l.71-.71A1 1 0 0 0 5.64 17ZM12 5a1 1 0 0 0 1-1V3a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1Zm5.66 2.34a1 1 0 0 0 .7-.29l.71-.71a1 1 0 1 0-1.41-1.41l-.66.71a1 1 0 0 0 0 1.41 1 1 0 0 0 .66.29Zm-12-.29a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.71-.71a1.004 1.004 0 1 0-1.43 1.41l.73.71ZM21 11h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-2.64 6A1 1 0 0 0 17 18.36l.71.71a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.76-.66ZM12 6.5a5.5 5.5 0 1 0 5.5 5.5A5.51 5.51 0 0 0 12 6.5Zm0 9a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 3.5a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1Z"/></svg> <svg aria-hidden="true" class="dark astro-g5uffdu7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.64 13a1 1 0 0 0-1.05-.14 8.049 8.049 0 0 1-3.37.73 8.15 8.15 0 0 1-8.14-8.1 8.59 8.59 0 0 1 .25-2A1 1 0 0 0 8 2.36a10.14 10.14 0 1 0 14 11.69 1 1 0 0 0-.36-1.05Zm-9.5 6.69A8.14 8.14 0 0 1 7.08 5.22v.27a10.15 10.15 0 0 0 10.14 10.14 9.784 9.784 0 0 0 2.1-.22 8.11 8.11 0 0 1-7.18 4.32v-.04Z"/></svg> <svg aria-hidden="true" class="auto astro-g5uffdu7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg> </template><link rel="stylesheet" href="/_astro/about.Dv5NFjIu.css">
<link rel="stylesheet" href="/_astro/index.Djiq6XLA.css">
<style>svg:where(.astro-g5uffdu7){color:var(--sl-icon-color);font-size:var(--sl-icon-size, 1em);width:1em;height:1em}
.image-container.svelte-sw5q2w{position:relative;display:inline-block}.waypoint.svelte-sw5q2w{position:absolute;width:20px;height:20px;color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;border-radius:50%;margin-left:-10px;margin-top:-10px}
.conch-shell.svelte-19kd8e1{transition:opacity .5s ease}.rotate.svelte-19kd8e1{animation:svelte-19kd8e1-rotate 1s infinite alternate}@keyframes svelte-19kd8e1-rotate{0%{transform:rotate(0)}to{transform:rotate(10deg)}}
</style><script type="module" src="/_astro/hoisted.jZutXUoP.js"></script>
.image-container.svelte-sw5q2w{position:relative;display:inline-block}.waypoint.svelte-sw5q2w{position:absolute;width:20px;height:20px;color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;border-radius:50%;margin-left:-10px;margin-top:-10px}
</style><script type="module" src="/_astro/hoisted.WDBBYIWd.js"></script>
<script type="module" src="/_astro/page.CY7HCSJH.js"></script>
<script>!(function(w,p,f,c){if(!window.crossOriginIsolated && !navigator.serviceWorker) return;c=w[p]=Object.assign(w[p]||{},{"lib":"/~partytown/","debug":false});c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.8.2 - MIT builder.io */
!function(t,e,n,i,o,r,a,s,d,c,l,p){function u(){p||(p=1,"/"==(a=(r.lib||"/~partytown/")+(r.debug?"debug/":""))[0]&&(d=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(s=setTimeout(f,1e4),e.addEventListener("pt0",w),o?h(1):n.serviceWorker?n.serviceWorker.register(a+(r.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):f())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.style.display="block",c.style.width="0",c.style.height="0",c.style.border="0",c.style.visibility="hidden",c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.8.2":"sandbox-sw.html?"+Date.now()),e.querySelector(r.sandboxParent||"body").appendChild(c)}function f(n,o){for(w(),i==t&&(r.forward||[]).map((function(e){delete t[e.split(".")[0]]})),n=0;n<d.length;n++)(o=e.createElement("script")).innerHTML=d[n].innerHTML,o.nonce=r.nonce,e.head.appendChild(o);c&&c.parentNode.removeChild(c)}function w(){clearTimeout(s)}r=t.partytown||{},i==t&&(r.forward||[]).map((function(e){l=t,e.split(".").map((function(e,n,i){l=l[i[n]]=n+1<i.length?"push"==i[n+1]?[]:l[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);;((d,s)=>(s=d.currentScript,d.addEventListener('astro:before-swap',()=>s.remove(),{once:true})))(document);</script><style>.card-grid:where(.astro-5yje5nfr){display:grid;gap:1rem}.card-grid:where(.astro-5yje5nfr)>*{margin-top:0!important}@media (min-width: 50rem){.card-grid:where(.astro-5yje5nfr){grid-template-columns:1fr 1fr;gap:1.5rem}.stagger:where(.astro-5yje5nfr){--stagger-height: 5rem;padding-bottom:var(--stagger-height)}.stagger:where(.astro-5yje5nfr)>*:nth-child(2n){transform:translateY(var(--stagger-height))}}
Expand Down
4 changes: 2 additions & 2 deletions docs/es/advanced/technical-specifications/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/android/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/ansible/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/appwrite/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/authelia/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/cubejs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/docker/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/flipperzero/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/flutter/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/gcloud/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/git/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/godot/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/javascript/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/kubernetes/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/linux/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/longhorn/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/ml/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/n8n/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/nginx/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/es/application/nmap/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/nomad/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/obs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/php/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/pocketbase/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/es/application/portainer/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 181705c

Please sign in to comment.