提交 206f6747 编写于 作者: A Amit Rathi

Updated logging

上级 c2407dab
......@@ -846,8 +846,8 @@ ActiveRecord::Schema.define(version: 20181107054254) do
t.datetime "created_at"
t.datetime "updated_at"
t.string "on_stop"
t.integer "status", limit: 2, default: 2, null: false
t.datetime_with_timezone "finished_at"
t.integer "status", limit: 2, default: 2, null: false
end
add_index "deployments", ["created_at"], name: "index_deployments_on_created_at", using: :btree
......
......@@ -9,6 +9,8 @@ module Gitlab
def install(command)
begin
Gitlab::AppLogger.info("---INSTALLING---------")
Gitlab::AppLogger.info(command)
namespace.ensure_exists!
create_service_account(command)
......
......@@ -14,7 +14,9 @@ module Gitlab
spec[:volumes] = volumes_specification
spec[:containers][0][:volumeMounts] = volume_mounts_specification
spec[:serviceAccountName] = service_account_name if service_account_name
Gitlab::AppLogger.info('--- Generating Installation POD ----')
Gitlab::AppLogger.info(metadata)
Gitlab::AppLogger.info(spec)
::Kubeclient::Resource.new(metadata: metadata, spec: spec)
end
......@@ -48,10 +50,14 @@ module Gitlab
end
def generate_pod_env(command)
sc = command.generate_script
Gitlab::AppLogger.info('--- generate_pod_env and command is---*******----')
Gitlab::AppLogger.info(sc)
Gitlab::AppLogger.info('--------------------------------------------------------')
{
HELM_VERSION: Gitlab::Kubernetes::Helm::HELM_VERSION,
TILLER_NAMESPACE: namespace_name,
COMMAND_SCRIPT: command.generate_script
COMMAND_SCRIPT: sc
}.map { |key, value| { name: key, value: value } }
end
......
......@@ -19,6 +19,10 @@ singleuser:
command: ["sh", "-c", "git clone https://gitlab.com/gitlab-org/nurtch-demo.git DevOps-Runbook-Demo || true"]
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: "nginx"
enabled: true
tls:
- hosts:
secretName: test-app-tls-2
annotations:
kubernetes.io/ingress.class: "nginx"
kubernetes.io/tls-acme: "true"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册