First working draft of kafka for inference app
[demo.git] / vnfs / DAaaS / microservices / PythonApps / python-kafkaConsumer-inference-app / skaffold.yaml
1 apiVersion: skaffold/v1beta11
2 kind: Config
3 build:
4   tagPolicy:
5     sha256: {}
6   # defines where to find the code at build time and where to push the resulting image
7   artifacts:
8     - context: src
9       image: python-kafkaconsumer-inference-app
10 # defines the Kubernetes manifests to deploy on each run
11 deploy:
12   kubectl:
13     manifests:
14       - kubernetes-manifests/**.yaml
15 # use the cloudbuild profile to build images using Google Cloud Build
16 profiles:
17 - name: cloudbuild
18   build:
19     googleCloudBuild: {}