@@ -232,7 +232,7 @@ def deploy_environments
232
232
_announce_step "Deploy environments..."
233
233
# each for clusters
234
234
@envs_to_deploy . group_by { |e | e [ 'cluster' ] } . each do |cluster , envs |
235
- # preparing environments for this cluster and set up project id in codebase
235
+ # preparing environments for this cluster
236
236
_prepare_cluster_environments ( cluster , envs )
237
237
238
238
# run cdk8s for current cluster environments
@@ -261,7 +261,6 @@ def _prepare_cluster_environments(cluster, envs)
261
261
puts "\n Preparing '#{ env [ 'name' ] } ' to be deployed on cluster '#{ cluster } '..." . green
262
262
puts env if ENV [ 'DEBUG' ] == 'true'
263
263
settings = env [ 'settings' ]
264
- project_id = ""
265
264
auth_data = settings [ 'auth_data' ]
266
265
267
266
ENV [ "KUBECONFIG" ] = auth_data
@@ -277,7 +276,7 @@ def _prepare_cluster_environments(cluster, envs)
277
276
yaml_content = YAML . safe_load ( yaml_file )
278
277
# puts yaml_content.to_yaml
279
278
yaml_content . each do |app , settings |
280
- next if yaml_content [ app ] . is_a? ( String ) || ! yaml_content [ app ] . key? ( 'projectId' )
279
+ next if yaml_content [ app ] . is_a? ( String )
281
280
282
281
if !env [ 'applications' ] || (
283
282
env [ 'applications' ] &&
@@ -287,10 +286,6 @@ def _prepare_cluster_environments(cluster, envs)
287
286
namespaces . push ( settings [ 'namespace' ] )
288
287
end
289
288
all_namespaces . push ( settings [ 'namespace' ] )
290
- # Add projectId to any namespace of the environment if it's empty
291
- if yaml_content [ app ] [ 'projectId' ] . to_s . strip . empty? && project_id
292
- yaml_content [ app ] [ 'projectId' ] = project_id
293
- end
294
289
end
295
290
296
291
# puts yaml_content.to_yaml
0 commit comments