mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2025-12-12 01:50:05 +01:00
fix(tikv): add app label
This commit is contained in:
parent
60cfad262f
commit
5bb1c11c31
1 changed files with 4 additions and 1 deletions
|
|
@ -6,7 +6,10 @@
|
|||
serviceName = "${values.uniqueName}-pd";
|
||||
updateStrategy.type = "RollingUpdate";
|
||||
template = {
|
||||
metadata.labels.name = "${values.uniqueName}-pd";
|
||||
metadata.labels = rec {
|
||||
name = "${values.uniqueName}-pd";
|
||||
app = name;
|
||||
};
|
||||
spec = {
|
||||
containers."pd" = {
|
||||
image = "${values.pd.image.repository}:${values.pd.image.tag}";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue