提交 7be10a7c 编写于 作者: A Amit Rathi

Remove logging changes

上级 6dda43d6
......@@ -8,26 +8,13 @@ module Gitlab
end
def install(command)
begin
namespace.ensure_exists!
create_service_account(command)
create_cluster_role_binding(command)
Gitlab::AppLogger.info("---CREATING CONFIG MAP-----")
Gitlab::AppLogger.info(command)
create_config_map(command)
Gitlab::AppLogger.info("---CREATING K8s POD-----")
kubeclient.create_pod(command.pod_resource)
rescue StandardError => e
Gitlab::AppLogger.info('install_api_error------------------------------------------------')
Gitlab::AppLogger.error(e)
Gitlab::AppLogger.error(e.backtrace.join("\n"))
rescue Exception => e
Gitlab::AppLogger.info('install_api_exception--------------------------------------------------')
Gitlab::AppLogger.error(e)
Gitlab::AppLogger.error(e.backtrace.join("\n"))
end
namespace.ensure_exists!
create_service_account(command)
create_cluster_role_binding(command)
create_config_map(command)
kubeclient.create_pod(command.pod_resource)
end
def update(command)
......@@ -67,7 +54,6 @@ module Gitlab
def create_config_map(command)
command.config_map_resource.tap do |config_map_resource|
Gitlab::AppLogger.info(config_map_resource)
kubeclient.create_config_map(config_map_resource)
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册