Skip to content

Commit 325214b

Browse files
author
AlexRogalskiy
committed
Added info on workflows
Updates on github-actions
1 parent 89744eb commit 325214b

3 files changed

Lines changed: 31 additions & 63 deletions

File tree

README.md

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -43,34 +43,36 @@
4343
## 🎹 *Table of contents*
4444

4545
<!--ts-->
46-
* [Java Design Patterns](#java-design-patterns)
47-
* [<em>Table of contents</em>](#-table-of-contents)
48-
* [<em>Summary</em>](#-summary)
49-
* [<em>Documentation</em>](#-documentation)
50-
* [<em>Kubernetes</em>](#-kubernetes)
51-
* [<em>Statistics</em>](#-statistics)
52-
* [<em>Versioning</em>](#-versioning)
53-
* [<em>Authors</em>](#-authors)
54-
* [<em>Contributing</em>](#-contributing)
55-
* [<em>Visitor stats</em>](#-visitor-stats)
56-
* [<em>Licensing</em>](#-licensing)
57-
* [<em>Development Support</em>](#-development-support)
58-
* [<em>Acknowledgement</em>](#-acknowledgement)
59-
* [<em>OpenGraph Card</em>](#-opengraph-card)
60-
* [<em>Feeds and Podcasts</em>](#-feeds-and-podcasts)
61-
* [<em>Reddit posts</em>](#reddit-posts)
62-
* [<em>InfoWorld posts</em>](#infoworld-posts)
63-
* [<em>Let's talk posts</em>](#lets-talk-posts)
64-
* [<em>Random thoughts posts</em>](#random-thoughts-posts)
65-
* [<em>Better code posts</em>](#better-code-posts)
66-
* [<em>Inside Java posts</em>](#inside-java-posts)
67-
* [<em>Java programmer posts</em>](#java-programmer-posts)
68-
* [<em>Dreamix posts</em>](#dreamix-posts)
69-
* [<em>Plumbr posts</em>](#plumbr-posts)
70-
* [<em>Thorben Janssen posts</em>](#thorben-janssen-posts)
71-
* [<em>Redhat posts</em>](#redhat-posts)
72-
* [<em>JavaCodeGeeks posts</em>](#javacodegeeks-posts)
73-
* [<em>DevCases posts</em>](#devcases-posts)
46+
47+
- [Java Design Patterns](#java-design-patterns)
48+
- [<em>Table of contents</em>](#-table-of-contents)
49+
- [<em>Summary</em>](#-summary)
50+
- [<em>Documentation</em>](#-documentation)
51+
- [<em>Kubernetes</em>](#-kubernetes)
52+
- [<em>Statistics</em>](#-statistics)
53+
- [<em>Versioning</em>](#-versioning)
54+
- [<em>Authors</em>](#-authors)
55+
- [<em>Contributing</em>](#-contributing)
56+
- [<em>Visitor stats</em>](#-visitor-stats)
57+
- [<em>Licensing</em>](#-licensing)
58+
- [<em>Development Support</em>](#-development-support)
59+
- [<em>Acknowledgement</em>](#-acknowledgement)
60+
- [<em>OpenGraph Card</em>](#-opengraph-card)
61+
- [<em>Feeds and Podcasts</em>](#-feeds-and-podcasts)
62+
- [<em>Reddit posts</em>](#reddit-posts)
63+
- [<em>InfoWorld posts</em>](#infoworld-posts)
64+
- [<em>Let's talk posts</em>](#lets-talk-posts)
65+
- [<em>Random thoughts posts</em>](#random-thoughts-posts)
66+
- [<em>Better code posts</em>](#better-code-posts)
67+
- [<em>Inside Java posts</em>](#inside-java-posts)
68+
- [<em>Java programmer posts</em>](#java-programmer-posts)
69+
- [<em>Dreamix posts</em>](#dreamix-posts)
70+
- [<em>Plumbr posts</em>](#plumbr-posts)
71+
- [<em>Thorben Janssen posts</em>](#thorben-janssen-posts)
72+
- [<em>Redhat posts</em>](#redhat-posts)
73+
- [<em>JavaCodeGeeks posts</em>](#javacodegeeks-posts)
74+
- [<em>DevCases posts</em>](#devcases-posts)
75+
7476
<!--te-->
7577

7678
## *Summary*

k8s/backend/deployment.yaml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ spec:
3131
annotations:
3232
scheduler.alpha.kubernetes.io/critical-pod: ''
3333
spec:
34+
dnsPolicy: Default
3435
tolerations:
3536
- key: 'CriticalAddonsOnly'
3637
operator: 'Exists'
@@ -49,30 +50,3 @@ spec:
4950
requests:
5051
cpu: 100m
5152
memory: 32Mi
52-
# livenessProbe:
53-
# httpGet:
54-
# host: localhost
55-
# path: /
56-
# port: 8000
57-
# scheme: HTTP
58-
# initialDelaySeconds: 60
59-
# timeoutSeconds: 5
60-
# successThreshold: 1
61-
# failureThreshold: 5
62-
# readinessProbe:
63-
# httpGet:
64-
# host: localhost
65-
# path: /
66-
# port: 8000
67-
# scheme: HTTP
68-
dnsPolicy: Default
69-
# volumeMounts:
70-
# - mountPath: /usr/src/app
71-
# name: appvolume
72-
# - mountPath: /usr/src/data
73-
# name: data
74-
# volumes:
75-
# - name: appvolume
76-
# emptyDir: { }
77-
# - name: data
78-
# emptyDir: { }

k8s/secure/backend/deployment.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,7 @@ spec:
6161
- name: tls
6262
mountPath: /data/cert
6363
readOnly: true
64-
- mountPath: /usr/src/app
65-
name: appvolume
66-
- mountPath: /usr/src/data
67-
name: data
6864
volumes:
6965
- name: tls
7066
secret:
7167
secretName: backend-tls
72-
- name: appvolume
73-
emptyDir: {}
74-
- name: data
75-
emptyDir: {}

0 commit comments

Comments
 (0)