Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cardsplus/demoscs
Self-Contained System mit Spring-Boot und Svelte-UI
https://github.com/cardsplus/demoscs
asciidoctor cardsplus css gradle html jackson java javascript jpa lombok scm spring-boot spring-data-jpa spring-data-rest spring-rest-docs spring-webmvc svelte
Last synced: 29 days ago
JSON representation
Self-Contained System mit Spring-Boot und Svelte-UI
- Host: GitHub
- URL: https://github.com/cardsplus/demoscs
- Owner: cardsplus
- Created: 2021-01-03T09:59:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-17T16:39:08.000Z (over 1 year ago)
- Last Synced: 2024-11-17T02:38:11.406Z (3 months ago)
- Topics: asciidoctor, cardsplus, css, gradle, html, jackson, java, javascript, jpa, lombok, scm, spring-boot, spring-data-jpa, spring-data-rest, spring-rest-docs, spring-webmvc, svelte
- Language: Java
- Homepage: https://github.com/cardsplus/bootscs
- Size: 10 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README-GitHub.adoc
Awesome Lists containing this project
README
:icons: font
:experimental: true
= README GitHub== Installation
Keine.
== Registrierung
https://github.com/signup
== Konfiguration
=== Kubernetes-Cluster mit Container-Registry verbinden
Dazu muss ein spezielles _Secret_ eingerichtet werden.
[source, gradle]
----
kubectl create secret docker-registry ghcr-login --docker-server=https://ghcr.io --docker-username= --docker-email= --docker-password=
----Der Name des _Secrets_ ist `ghcr-login`.
TIP: Weiterlesen auf
https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/Der Wert von `` ist der Anmeldename für das _GitHub_-Konto.
Der Wert von `` ist die im _GitHub_-Konto hinterlegte E-Mail-Adresse.
Der Wert von `` ist ein _Personal Access Token_.
Es muss mindestens den Scope `read:packages` haben.TIP: Weiterlesen auf
https://github.com/settings/tokens/newDer Name des _Secrets_ wird in der `values.yaml` eingetragen.
[source, yaml]
----
include::app/deploy/values.yaml[]
----Bei der Installation mit `helm` wird der Name des _Secrets_ im Deployment in `imagePullSecrets` verwendet.