Created
August 7, 2020 16:37
-
-
Save trisberg/fb1a99ed8da459104016b1c9f1d3adef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: kubernetes-skaffold | |
displayName: Spring Kubernetes Deployment using Skaffold | |
description: Deploy a Spring Boot application using kustomize, off-the-shell kustomizations, and deploy using skaffold. | |
iconUrl: https://icon-library.com/images/rick-sanchez-icon/rick-sanchez-icon-24.jpg | |
maintainer: [email protected] | |
version: 1.0.0 | |
tags: skaffold, kubernetes, spring | |
commands: |- | |
k8s new | |
k8s update | |
sourceUrl: github.com/markpollack/generator-k8s-kustomize-skaffold | |
homeUrl: https://github.com/markpollack/generator-k8s-kustomize-skaffold | |
--- | |
name: knative-skaffold | |
displayName: Spring Kubernetes Deployment using Skaffold | |
description: Deploy a Spring Boot application using Jib for build, kustomize off-the-shell kustomizations for KNative, and deploy using skaffold. | |
iconUrl: https://avatars3.githubusercontent.com/u/35583233?s=280&v=4 | |
maintainer: [email protected] | |
version: 1.0.0 | |
tags: skaffold, kubernetes, knative, spring | |
commands: |- | |
knative new | |
knative update | |
sourceUrl: github.com/trisberg/generator-knative-kustomize-skaffold | |
homeUrl: https://github.com/markpollack/generator-knative-kustomize-skaffold |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: spring-mysql-jpa | |
displayName: Spring Data JPA with MySQL | |
version: 1.0.0 | |
sourceUrl: github.com/spring-guides/gs-accessing-data-mysql//complete | |
language: java | |
framework: spring | |
services: mysql | |
packageEndUserDocumentation: github.com/arch-docs/mysql//readme.md | |
homeUrl: https://github.com/spring-guides/gs-accessing-data-mysql | |
tags: | |
- database | |
- spring | |
- jpa | |
- mysql | |
maintainer: https://github.com/dsyer | |
description: A Spring Boot application that connects to a MySQL database and uses Spring Data JPA to access the database. Contains stub code for accessing User data using Spring Data JPA. | |
--- | |
name: hello-fun | |
displayName: Spring Cloud Function Serverless App | |
version: 0.0.1-SNAPSHOT | |
sourceUrl: github.com/trisberg/hello-fun | |
language: java | |
framework: spring | |
homeUrl: https://github.com/trisberg/hello-fun | |
packageEndUSerDocumentation: https://github.com/trisberg/hello-fun/blob/master/README.md | |
tags: | |
- spring | |
- cloud | |
- function | |
maintainer: https://github.com/trisberg | |
description: A basic hello world Spring Cloud Function serverless app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
starterName: spring-mysql-jpa-starter | |
starterMetadataName: spring-mysql-jpa | |
generatorMetadataNames: | |
- kubernetes-skaffold | |
actionNames: | |
- github-repo-create | |
--- | |
starterName: hello-fun-starter | |
starterMetadataName: hello-fun | |
generatorMetadataNames: | |
- knative-skaffold | |
actionNames: | |
- github-repo-create |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment