mirror of
https://github.com/go-micro/go-micro.git
synced 2025-05-19 21:23:04 +02:00
18 lines
345 B
Go
18 lines
345 B
Go
package template
|
|
|
|
// SkaffoldCFG is the Skaffold config template used for new projects.
|
|
var SkaffoldCFG = `---
|
|
|
|
apiVersion: skaffold/v2beta21
|
|
kind: Config
|
|
metadata:
|
|
name: {{.Service}}{{if .Client}}-client{{end}}
|
|
build:
|
|
artifacts:
|
|
- image: {{.Service}}{{if .Client}}-client{{end}}
|
|
deploy:
|
|
kubectl:
|
|
manifests:
|
|
- resources/*.yaml
|
|
`
|