We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2229cd commit 49829a1Copy full SHA for 49829a1
migrations/standardize-labels.sh
@@ -86,6 +86,7 @@ deployment_apps=(
86
st2workflowengine
87
)
88
for app in "${deployment_apps[@]}"; do
89
+ echo "Deployment app=${app} ..."
90
klabel_app_name Deployment ${app}
91
klabel_app_name ReplicaSet ${app}
92
klabel_app_name Pod ${app}
@@ -99,6 +100,7 @@ service_apps=(
99
100
st2web
101
102
for app in "${service_apps[@]}"; do
103
+ echo "Service app=${app} ..."
104
klabel_app_name Service ${app}
105
done
106
@@ -109,6 +111,7 @@ job_apps=(
109
111
$(k_get_app_names Job extra-helm-hook)
110
112
113
for app in "${job_apps[@]}"; do
114
+ echo "Job app=${app} ..."
115
klabel_app_name Job ${app}
116
117
0 commit comments