diff --git a/apps/app02/CHANGELOG.md b/apps/app02/CHANGELOG.md index fe0d294..408fbe1 100644 --- a/apps/app02/CHANGELOG.md +++ b/apps/app02/CHANGELOG.md @@ -1,3 +1,5 @@ +* 2022-07-18 v1.28 [DEV] fixed env, removed RICCARDO_KUSTOMIZE_ENV and added CloudDeploy env vars. +* 2022-07-18 v1.27 [DEV] now we have 4 colors, one per different Target. This makes it easy to troubleshoot on Web page. * 2022-07-16 v1.23 [OPS] fixed dockerfile to serve on 8080. NOW it should work! * 2022-07-16 v1.22 [OPS] moved Depl from 80 to 8080 so now its the same as Python app. Could help my scripts :) * 2022-07-15 v1.12 [OPS] moved prod -> production in skaffold stage to match CloudDeploy.yaml diff --git a/apps/app02/ruby-app/VERSION b/apps/app02/ruby-app/VERSION index 35a1a0c..f263b94 100644 --- a/apps/app02/ruby-app/VERSION +++ b/apps/app02/ruby-app/VERSION @@ -1 +1 @@ -1.27colors +1.28env diff --git a/apps/app02/ruby-app/app.rb b/apps/app02/ruby-app/app.rb index db43df9..3a818af 100644 --- a/apps/app02/ruby-app/app.rb +++ b/apps/app02/ruby-app/app.rb @@ -1,6 +1,6 @@ $VERSION = File.read("VERSION").chomp # Removing RACK_ENV because its always DEV and its confusing! :) -$interesting_envs = %w{ RICCARDO_KUSTOMIZE_ENV RICCARDO_MESSAGE FAVORITE_COLOR APP_NAME CLOUD_DEPLOY_TARGET_COMMON } +$interesting_envs = %w{ CLOUD_DEPLOY_TARGET RICCARDO_MESSAGE FAVORITE_COLOR APP_NAME CLOUD_DEPLOY_TARGET_COMMON } class App require 'socket'