Merge branch 'main' of ssh://192.168.88.240:222/prodik/wiki-js
commit
1b48321fc8
|
|
@ -2,7 +2,7 @@
|
|||
title: DevOps
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:18.222Z
|
||||
date: 2023-11-07T18:13:02.911Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T08:57:53.006Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Helm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:50.122Z
|
||||
date: 2023-11-07T18:13:35.242Z
|
||||
tags: helm
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-07T15:25:32.651Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 01-Основы helm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:45.740Z
|
||||
date: 2023-11-07T18:13:30.918Z
|
||||
tags: helm
|
||||
editor: markdown
|
||||
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:13:43.727Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T18:05:41.208Z
|
||||
---
|
||||
|
||||
```yaml
|
||||
---
|
||||
kind: ConfigMap
|
||||
|
|
|
|||
|
|
@ -1,3 +1,13 @@
|
|||
---
|
||||
title: configmap-html
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:13:48.426Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T18:05:47.418Z
|
||||
---
|
||||
|
||||
```yaml
|
||||
---
|
||||
kind: ConfigMap
|
||||
|
|
|
|||
|
|
@ -1,4 +1,14 @@
|
|||
```yaml
|
||||
---
|
||||
title: deployment
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:13:53.017Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T18:05:54.420Z
|
||||
---
|
||||
|
||||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
|
|
|
|||
|
|
@ -1,3 +1,13 @@
|
|||
---
|
||||
title: ingress
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:13:57.347Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T18:06:01.729Z
|
||||
---
|
||||
|
||||
```yaml
|
||||
---
|
||||
kind: Ingress
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: service
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:55.211Z
|
||||
date: 2023-11-07T18:13:39.440Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T15:49:24.049Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: bash-completion для kubectl
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:14.013Z
|
||||
date: 2023-11-07T18:12:58.751Z
|
||||
tags: bash, kubectl
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T08:55:30.344Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: ПО, которое необходимо для установки и настройки хакинтоша
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:41.304Z
|
||||
date: 2023-11-07T18:13:26.047Z
|
||||
tags: mac, soft, hackintosh
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-07T10:42:22.230Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Home Page
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:27.306Z
|
||||
date: 2023-11-07T18:13:12.253Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T14:27:02.804Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Syncthing - резервное копирование
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:05.416Z
|
||||
date: 2023-11-07T18:12:49.447Z
|
||||
tags: syncthing, backup
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-02T11:52:22.718Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: bash-completion автодополнение
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:09.825Z
|
||||
date: 2023-11-07T18:12:54.666Z
|
||||
tags: bash, linux
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T08:47:49.396Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Отвязка процесса от терминальной сессии
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:32.208Z
|
||||
date: 2023-11-07T18:13:16.928Z
|
||||
tags: bash, process, screen
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T10:15:03.139Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Шпаргалка по выводу в терминале
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:36.749Z
|
||||
date: 2023-11-07T18:13:21.636Z
|
||||
tags: output, tee
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T10:37:25.945Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Авторизация по ключу rsa по ssh
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T17:55:23.154Z
|
||||
date: 2023-11-07T18:13:08.237Z
|
||||
tags: ssh, rsa
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-03T12:36:39.209Z
|
||||
|
|
|
|||
Loading…
Reference in New Issue