Skip to content

Instantly share code, notes, and snippets.

View arellano-gustavo's full-sized avatar
💭
I am just happy

Gustavo Adolfo Arellano Sandoval arellano-gustavo

💭
I am just happy
View GitHub Profile
@arellano-gustavo
arellano-gustavo / app.yaml
Created October 25, 2022 19:02
yaml file for us to deploy a simple springboot app (with 3 replicas) in microk8s and nginx as a reverse proxy (ingress balancer)
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: demo-microk8s-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$2
spec:
tls:
- hosts:
- access.qbits.mx
@arellano-gustavo
arellano-gustavo / README.md
Last active October 26, 2022 02:48
Prueba sencilla de microk8s con una imagen de Spark

Instrucciones

1  mkdir project
2  cd project
3  nano app.yaml
4  nano store-ssl-cert.sh
5  nano create-secret.sh
6  nano server.key
7  nano server.crt
8 chmod 700 *.sh
version: '3'
services:
db:
image: mariadb:10.3.9
volumes:
- data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=wordpress
version: '3'
services:
mariadb:
image: 'mariadb'
restart: unless-stopped
environment:
- MARIADB_USER=chavelo
- MARIADB_DATABASE=no_importa
- MARIADB_PASSWORD=secreto
@arellano-gustavo
arellano-gustavo / LoginView.vue
Created December 6, 2023 15:28
archivo de Vue para clase
<template>
<div>