21 lines
305 B
YAML
21 lines
305 B
YAML
|
apiVersion: skaffold/v3
|
||
|
kind: Config
|
||
|
metadata:
|
||
|
name: inventory-app
|
||
|
|
||
|
deploy:
|
||
|
kubectl: {}
|
||
|
|
||
|
manifests:
|
||
|
rawYaml:
|
||
|
- deployment.yaml
|
||
|
|
||
|
build:
|
||
|
artifacts:
|
||
|
- image: inventory-app
|
||
|
sync:
|
||
|
manual:
|
||
|
- src: "inventory-app/**/*.{py,html}"
|
||
|
dest: .
|
||
|
strip: 'inventory-app'
|