Commit 849b54f6 authored by Chris Baumbauer's avatar Chris Baumbauer Committed by Alishan Ladhani

Fix chart location

parent fbe47871
...@@ -4,7 +4,7 @@ module Clusters ...@@ -4,7 +4,7 @@ module Clusters
module Applications module Applications
class Knative < ApplicationRecord class Knative < ApplicationRecord
VERSION = '0.7.0' VERSION = '0.7.0'
REPOSITORY = 'https://storage.googleapis.com/gitlab-triggermesh-charts' REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'
METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml' METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'
FETCH_IP_ADDRESS_DELAY = 30.seconds FETCH_IP_ADDRESS_DELAY = 30.seconds
API_RESOURCES_PATH = 'config/knative/api_resources.yml' API_RESOURCES_PATH = 'config/knative/api_resources.yml'
......
...@@ -410,8 +410,10 @@ module KubernetesHelpers ...@@ -410,8 +410,10 @@ module KubernetesHelpers
"generation" => 2 "generation" => 2
}, },
"status" => { "status" => {
"domain" => "#{name}.#{namespace}.#{domain}", "url" => "http://#{name}.#{namespace}.#{domain}",
"domainInternal" => "#{name}.#{namespace}.svc.cluster.local", "address" => {
"url" => "#{name}.#{namespace}.svc.cluster.local"
},
"latestCreatedRevisionName" => "#{name}-00002", "latestCreatedRevisionName" => "#{name}-00002",
"latestReadyRevisionName" => "#{name}-00002", "latestReadyRevisionName" => "#{name}-00002",
"observedGeneration" => 2 "observedGeneration" => 2
...@@ -437,8 +439,10 @@ module KubernetesHelpers ...@@ -437,8 +439,10 @@ module KubernetesHelpers
} }
}, },
"status" => { "status" => {
"domain" => "#{name}.#{namespace}.#{domain}", "url" => "http://#{name}.#{namespace}.#{domain}",
"domainInternal" => "#{name}.#{namespace}.svc.cluster.local", "address" => {
"url" => "#{name}.#{namespace}.svc.cluster.local"
},
"latestCreatedRevisionName" => "#{name}-00002", "latestCreatedRevisionName" => "#{name}-00002",
"latestReadyRevisionName" => "#{name}-00002", "latestReadyRevisionName" => "#{name}-00002",
"observedGeneration" => 2 "observedGeneration" => 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment