docs: add all untracked content
parent
ef4a3e69a1
commit
6ef085858e
|
|
@ -2,7 +2,7 @@
|
||||||
title: DevOps
|
title: DevOps
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:00.157Z
|
date: 2023-11-07T17:55:18.222Z
|
||||||
tags:
|
tags:
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-03T08:57:53.006Z
|
dateCreated: 2023-11-03T08:57:53.006Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Helm
|
title: Helm
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:30.060Z
|
date: 2023-11-07T17:55:50.122Z
|
||||||
tags: helm
|
tags: helm
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-07T15:25:32.651Z
|
dateCreated: 2023-11-07T15:25:32.651Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: 01-Основы helm
|
title: 01-Основы helm
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:26.137Z
|
date: 2023-11-07T17:55:45.740Z
|
||||||
tags: helm
|
tags: helm
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-11-07T15:18:54.227Z
|
dateCreated: 2023-11-07T15:18:54.227Z
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
kind: ConfigMap
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: openresty-conf
|
||||||
|
data:
|
||||||
|
default.conf: |
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name localhost;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/local/openresty/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
}
|
||||||
|
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
location = /50x.html {
|
||||||
|
root /usr/local/openresty/nginx/html;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
@ -0,0 +1,40 @@
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
kind: ConfigMap
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: openresty-html
|
||||||
|
data:
|
||||||
|
index.html: |
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Тестовая страница</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Тестовая страница</h1>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
50x.html: |
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||||||
|
<meta content="utf-8" http-equiv="encoding">
|
||||||
|
<title>Error</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
width: 35em;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>An error occurred.</h1>
|
||||||
|
<p>Sorry, the page you are looking for is currently unavailable.<br/>
|
||||||
|
Please try again later.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
title: ingressyaml
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T17:56:00.244Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T17:42:43.772Z
|
||||||
|
---
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
kind: Ingress
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
metadata:
|
||||||
|
name: application
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: "system-ingress"
|
||||||
|
certmanager.k8s.io/cluster-issuer: monitoring-issuer
|
||||||
|
spec:
|
||||||
|
rules:
|
||||||
|
- host: "application.kryukov.local"
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- pathType: Prefix
|
||||||
|
path: /
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: openresty
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
```
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
---
|
||||||
|
title: service
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T17:55:55.211Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T15:49:24.049Z
|
||||||
|
---
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
kind: Service
|
kind: Service
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: bash-completion для kubectl
|
title: bash-completion для kubectl
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:23:56.024Z
|
date: 2023-11-07T17:55:14.013Z
|
||||||
tags: bash, kubectl
|
tags: bash, kubectl
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-03T08:55:30.344Z
|
dateCreated: 2023-11-03T08:55:30.344Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: ПО, которое необходимо для установки и настройки хакинтоша
|
title: ПО, которое необходимо для установки и настройки хакинтоша
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:21.510Z
|
date: 2023-11-07T17:55:41.304Z
|
||||||
tags: mac, soft, hackintosh
|
tags: mac, soft, hackintosh
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-07T10:42:22.230Z
|
dateCreated: 2023-11-07T10:42:22.230Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Home Page
|
title: Home Page
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:08.845Z
|
date: 2023-11-07T17:55:27.306Z
|
||||||
tags:
|
tags:
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-03T14:27:02.804Z
|
dateCreated: 2023-11-03T14:27:02.804Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Syncthing - резервное копирование
|
title: Syncthing - резервное копирование
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:23:47.655Z
|
date: 2023-11-07T17:55:05.416Z
|
||||||
tags: syncthing, backup
|
tags: syncthing, backup
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-02T11:52:22.718Z
|
dateCreated: 2023-11-02T11:52:22.718Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: bash-completion автодополнение
|
title: bash-completion автодополнение
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:23:52.015Z
|
date: 2023-11-07T17:55:09.825Z
|
||||||
tags: bash, linux
|
tags: bash, linux
|
||||||
editor: ckeditor
|
editor: ckeditor
|
||||||
dateCreated: 2023-11-03T08:47:49.396Z
|
dateCreated: 2023-11-03T08:47:49.396Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Отвязка процесса от терминальной сессии
|
title: Отвязка процесса от терминальной сессии
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:13.246Z
|
date: 2023-11-07T17:55:32.208Z
|
||||||
tags: bash, process, screen
|
tags: bash, process, screen
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-11-07T10:15:03.139Z
|
dateCreated: 2023-11-07T10:15:03.139Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Шпаргалка по выводу в терминале
|
title: Шпаргалка по выводу в терминале
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:17.608Z
|
date: 2023-11-07T17:55:36.749Z
|
||||||
tags: output, tee
|
tags: output, tee
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-11-07T10:37:25.945Z
|
dateCreated: 2023-11-07T10:37:25.945Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: Авторизация по ключу rsa по ssh
|
title: Авторизация по ключу rsa по ssh
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T16:24:04.921Z
|
date: 2023-11-07T17:55:23.154Z
|
||||||
tags: ssh, rsa
|
tags: ssh, rsa
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-11-03T12:36:39.209Z
|
dateCreated: 2023-11-03T12:36:39.209Z
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue