docs: add all untracked content
parent
5c2d88fa1f
commit
f9a5e0300c
|
|
@ -2,7 +2,7 @@
|
||||||
title: DevOps
|
title: DevOps
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T17:55:18.222Z
|
date: 2023-11-07T18:09:58.817Z
|
||||||
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-07T17:55:50.122Z
|
date: 2023-11-07T18:10:30.544Z
|
||||||
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-07T17:55:45.740Z
|
date: 2023-11-07T18:10:26.238Z
|
||||||
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,60 @@
|
||||||
|
---
|
||||||
|
kind: Deployment
|
||||||
|
apiVersion: apps/v1
|
||||||
|
metadata:
|
||||||
|
name: openresty
|
||||||
|
labels:
|
||||||
|
k8s-app: openresty
|
||||||
|
annotations:
|
||||||
|
reloader.stakater.com/auto: "true"
|
||||||
|
configmap.reloader.stakater.com/reload: "openresty"
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
|
revisionHistoryLimit: 3
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
k8s-app: openresty
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
k8s-app: openresty
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: openresty
|
||||||
|
image: openresty/openresty:centos-rpm
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
name: http
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /index.html
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 15
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /index.html
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 15
|
||||||
|
timeoutSeconds: 5
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: "0.2"
|
||||||
|
memory: "400Mi"
|
||||||
|
requests:
|
||||||
|
cpu: "0.1"
|
||||||
|
memory: "200Mi"
|
||||||
|
volumeMounts:
|
||||||
|
- name: html
|
||||||
|
mountPath: /usr/local/openresty/nginx/html/
|
||||||
|
- name: config
|
||||||
|
mountPath: /etc/nginx/conf.d/
|
||||||
|
volumes:
|
||||||
|
- name: html
|
||||||
|
configMap:
|
||||||
|
name: openresty-html
|
||||||
|
- name: config
|
||||||
|
configMap:
|
||||||
|
name: openresty-conf
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
---
|
||||||
|
title: configmap-conf
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T18:10:39.727Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T18:05:41.208Z
|
||||||
|
---
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
---
|
||||||
|
title: configmap-html
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T18:10:44.131Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T18:05:47.418Z
|
||||||
|
---
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,14 @@
|
||||||
```yaml
|
```yaml
|
||||||
|
---
|
||||||
|
title: deployment
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T18:10:48.929Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T18:05:54.420Z
|
||||||
|
---
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
---
|
||||||
|
title: ingress
|
||||||
|
description:
|
||||||
|
published: true
|
||||||
|
date: 2023-11-07T18:10:53.557Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2023-11-07T18:06:01.729Z
|
||||||
|
---
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
kind: Ingress
|
kind: Ingress
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: service
|
title: service
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T17:55:55.211Z
|
date: 2023-11-07T18:10:34.820Z
|
||||||
tags:
|
tags:
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-11-07T15:49:24.049Z
|
dateCreated: 2023-11-07T15:49:24.049Z
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: bash-completion для kubectl
|
title: bash-completion для kubectl
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2023-11-07T17:55:14.013Z
|
date: 2023-11-07T18:09:54.248Z
|
||||||
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-07T17:55:41.304Z
|
date: 2023-11-07T18:10:21.212Z
|
||||||
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-07T17:55:27.306Z
|
date: 2023-11-07T18:10:07.908Z
|
||||||
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-07T17:55:05.416Z
|
date: 2023-11-07T18:09:44.826Z
|
||||||
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-07T17:55:09.825Z
|
date: 2023-11-07T18:09:48.864Z
|
||||||
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-07T17:55:32.208Z
|
date: 2023-11-07T18:10:12.250Z
|
||||||
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-07T17:55:36.749Z
|
date: 2023-11-07T18:10:17.019Z
|
||||||
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-07T17:55:23.154Z
|
date: 2023-11-07T18:10:03.835Z
|
||||||
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