Skip to content

Commit 905321c

Browse files
committed
Add missing async gateway image to create.md
1 parent 48295b5 commit 905321c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/clusters/management/create.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ image_operator: quay.io/cortexlabs/operator:master
103103
image_manager: quay.io/cortexlabs/manager:master
104104
image_downloader: quay.io/cortexlabs/downloader:master
105105
image_request_monitor: quay.io/cortexlabs/request-monitor:master
106+
image_image_async_gateway: quay.io/cortexlabs/async-gateway:master
106107
image_cluster_autoscaler: quay.io/cortexlabs/cluster-autoscaler:master
107108
image_metrics_server: quay.io/cortexlabs/metrics-server:master
108109
image_inferentia: quay.io/cortexlabs/inferentia:master

pkg/types/clusterconfig/cluster_config.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,6 +1210,9 @@ func (cc *CoreConfig) TelemetryEvent() map[string]interface{} {
12101210
if !strings.HasPrefix(cc.ImageRequestMonitor, "cortexlabs/") {
12111211
event["image_request_monitor._is_custom"] = true
12121212
}
1213+
if !strings.HasPrefix(cc.ImageAsyncGateway, "cortexlabs/") {
1214+
event["image_async_gateway._is_custom"] = true
1215+
}
12131216
if !strings.HasPrefix(cc.ImageClusterAutoscaler, "cortexlabs/") {
12141217
event["image_cluster_autoscaler._is_custom"] = true
12151218
}

0 commit comments

Comments
 (0)