-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathenv.kind
More file actions
53 lines (42 loc) · 1.57 KB
/
Copy pathenv.kind
File metadata and controls
53 lines (42 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Kind Installation Configuration - both for dev + e2e testing
RABBITMQ_URL ?= "amqp://guest:guest@rabbitmq:5672"
GATEWAY_SERVICE_TYPE ?= ClusterIP
API_BASE_URL ?= http://hyperfleet-gateway:8000
# Container Registry Configuration
REGISTRY ?= localhost
API_REPOSITORY ?= hyperfleet-api
SENTINEL_REPOSITORY ?= hyperfleet-sentinel
ADAPTER_REPOSITORY ?= hyperfleet-adapter
# Helm Charts
CHART_ORG ?= openshift-hyperfleet
API_CHART_REF ?= main
SENTINEL_CHART_REF ?= main
ADAPTER_CHART_REF ?= main
# Image Tags - local
API_IMAGE_TAG ?= local
SENTINEL_IMAGE_TAG ?= local
ADAPTER_IMAGE_TAG ?= local
IMAGE_PULL_POLICY ?= IfNotPresent
# Gateway Authentication (Authorino ext_authz)
# EXT_AUTHZ_ENABLED makes the gateway the authentication boundary via Authorino.
# kind has no external OIDC issuer, so the human-jwt AuthConfig cannot be
# exercised end-to-end here without a mock IdP; leave off for local dev.
# TENANT_MODEL selects the active AuthConfig (onprem|oracle).
EXT_AUTHZ_ENABLED ?= false
TENANT_MODEL ?= onprem
# Default Namespace is set depending on helmfile environment
# RUN_ID is needed for e2e testing
ifeq ($(findstring e2e,$(HELMFILE_ENV)),e2e)
NAMESPACE ?= hyperfleet-e2e
RUN_ID ?= $(NAMESPACE)
else
NAMESPACE ?= hyperfleet-local
endif
KIND_CLUSTER_NAME ?= kind
BUILD_IMAGES ?= true
# Observability
# Set OBSERVABILITY_ENABLED=true to deploy kube-prometheus-stack and enable ServiceMonitors.
OBSERVABILITY_ENABLED ?= false
MONITORING_NAMESPACE ?= monitoring
# Set TRACING_ENABLED=true to deploy Tempo + OpenTelemetry Collector and enable OTLP tracing.
TRACING_ENABLED ?= false