Skip to content

Commit e38c623

Browse files
authored
Merge pull request #16 from treatwell/PLAT-9436-remove-project-id-from-uala-iac-and-cdk-8-s-deployer
PLAT-9436: Get rid of projectId
2 parents a49a91e + 706e6d3 commit e38c623

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

Gemfile.lock

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ GEM
4949

5050
PLATFORMS
5151
arm64-darwin-22
52+
arm64-darwin-23
5253
universal-darwin-20
5354
x86_64-darwin-21
5455
x86_64-linux

app/controllers/deployer_controller.rb

+2-7
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def deploy_environments
232232
_announce_step "Deploy environments..."
233233
# each for clusters
234234
@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
236236
_prepare_cluster_environments(cluster, envs)
237237

238238
# run cdk8s for current cluster environments
@@ -261,7 +261,6 @@ def _prepare_cluster_environments(cluster, envs)
261261
puts "\nPreparing '#{env['name']}' to be deployed on cluster '#{cluster}'...".green
262262
puts env if ENV['DEBUG'] == 'true'
263263
settings = env['settings']
264-
project_id = ""
265264
auth_data = settings['auth_data']
266265

267266
ENV["KUBECONFIG"] = auth_data
@@ -277,7 +276,7 @@ def _prepare_cluster_environments(cluster, envs)
277276
yaml_content = YAML.safe_load(yaml_file)
278277
# puts yaml_content.to_yaml
279278
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)
281280

282281
if !env['applications'] || (
283282
env['applications'] &&
@@ -287,10 +286,6 @@ def _prepare_cluster_environments(cluster, envs)
287286
namespaces.push(settings['namespace'])
288287
end
289288
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
294289
end
295290

296291
# puts yaml_content.to_yaml

0 commit comments

Comments
 (0)