Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Storage presentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Disappointment industries™
Storage presentation
Commits
a8d7b9e0
Commit
a8d7b9e0
authored
2 years ago
by
Tóth Miklós Tibor
Browse files
Options
Downloads
Patches
Plain Diff
Fix errors when building from CI and add k8s manifests
parent
6a50f2ba
No related branches found
No related tags found
No related merge requests found
Pipeline
#38868
failed
2 years ago
Stage: 🔨
Stage: 📦
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
deploy/deployment.yaml
+33
-0
33 additions, 0 deletions
deploy/deployment.yaml
deploy/ingress.yaml
+25
-0
25 additions, 0 deletions
deploy/ingress.yaml
prez.md
+8
-2
8 additions, 2 deletions
prez.md
with
67 additions
and
3 deletions
Dockerfile
+
1
−
1
View file @
a8d7b9e0
FROM
docker.io/nginx:latest
COPY
prez.html /usr/share/nginx/html/index.html
COPY
img /usr/share/nginx/html/img
This diff is collapsed.
Click to expand it.
deploy/deployment.yaml
0 → 100644
+
33
−
0
View file @
a8d7b9e0
---
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
name
:
storage-prez
spec
:
selector
:
matchLabels
:
app
:
storage-prez
template
:
metadata
:
labels
:
app
:
storage-prez
spec
:
containers
:
-
name
:
prez
image
:
docker.io/miketth/storage-prez:latest
imagePullPolicy
:
Always
ports
:
-
containerPort
:
80
name
:
http
---
apiVersion
:
v1
kind
:
Service
metadata
:
name
:
storage-prez
spec
:
selector
:
app
:
storage-prez
ports
:
-
port
:
80
name
:
http
This diff is collapsed.
Click to expand it.
deploy/ingress.yaml
0 → 100644
+
25
−
0
View file @
a8d7b9e0
---
apiVersion
:
networking.k8s.io/v1
kind
:
Ingress
metadata
:
name
:
storage-prez
annotations
:
kubernetes.io/ingress.class
:
traefik
cert-manager.io/cluster-issuer
:
cloudflare
kubernetes.io/tls-acme
:
'
true'
spec
:
tls
:
-
hosts
:
-
storage-prez.mikesweb.site
secretName
:
storage-prez-tls
rules
:
-
host
:
storage-prez.mikesweb.site
http
:
paths
:
-
backend
:
service
:
name
:
storage-prez
port
:
number
:
80
path
:
/
pathType
:
Prefix
This diff is collapsed.
Click to expand it.
prez.md
+
8
−
2
View file @
a8d7b9e0
...
...
@@ -130,10 +130,16 @@ Vendor lock-in? 10 év múlva hogyan tovább?
-
RAID-5 és RAID-1 nem véd ellene, a többinél meg macerás validáltatni és javítani az adatot
<style>
.my_pre {
font-family: Roboto Mono,monospace;
color: var(--color-background);
background: var(--color-foreground);
font-size: 25pt;
}
.bad { color: red; }
</style>
<pre>
<pre
class=
"my_pre"
>
disk0: ...011010
<span
class=
"bad"
>
0
</span>
001100101011011000110110001101111...
disk1: ...011010
<span
class=
"bad"
>
1
</span>
001100101011011000110110001101111...
</pre>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment