Hi all,
How does rp determines the appname
to be used in the k8s deployment?
We have situation where for some of the services, the app name is correctly labeled without “-impl” at the end, but for one single service, the appName is keep getting labelled with “-impl” which results in the deployment errors.
In Lagom project, how does RP decide what to you for the appName?
Correct One:
---
apiVersion: "apps/v1beta2"
kind: Deployment
metadata:
name: "instrument-v1-0-2"
labels:
appName: instrument
appNameVersion: "instrument-v1-0-2"
Incorrect One:
apiVersion: "apps/v1beta2"
kind: Deployment
metadata:
name: "timeseries-impl-v1-0-2"
labels:
appName: "timeseries-impl"
appNameVersion: "timeseries-impl-v1-0-2"