Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/new

Der 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.