-
Notifications
You must be signed in to change notification settings - Fork 2
/
Tiltfile
58 lines (51 loc) · 2.5 KB
/
Tiltfile
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
54
55
56
57
58
# SPDX-License-Identifier: MIT
# -*- mode: Python -*-
load('ext://cert_manager', 'deploy_cert_manager')
# garm-operator is the name of the kind-cluster and therefore usable as k8s context
allow_k8s_contexts('kind-garm-operator')
# we use the `cert_manager` extension to deploy cert-manager into the kind-cluster
# as the plugin has already well written readiness checks we can use it to wait for
deploy_cert_manager(
kind_cluster_name='garm-operator', # just for security reasons ;-)
version='v1.15.3' # the version of cert-manager to deploy
)
# mode could be either 'local' or 'debug'
# when set to 'debug', delve will be used within the container to start
# the manager binary and the dlv debug port will be exposed
#
# for more details, please read the DEVELOPMENT.md
mode = 'local'
# kustomize overlays
templated_yaml = kustomize('config/overlays/' + mode)
k8s_yaml(templated_yaml)
# for not having uncategorized resources in the tilt ui
# we explicitly define the resources we want to have grouped together
k8s_resource(
"garm-operator-controller-manager",
objects=[
'garm-operator-system:namespace',
'enterprises.garm-operator.mercedes-benz.com:customresourcedefinition',
'images.garm-operator.mercedes-benz.com:customresourcedefinition',
'organizations.garm-operator.mercedes-benz.com:customresourcedefinition',
'pools.garm-operator.mercedes-benz.com:customresourcedefinition',
'runners.garm-operator.mercedes-benz.com:customresourcedefinition',
'repositories.garm-operator.mercedes-benz.com:customresourcedefinition',
'garmserverconfigs.garm-operator.mercedes-benz.com:customresourcedefinition',
'githubcredential.garm-operator.mercedes-benz.com:customresourcedefinition',
'githubendpoints.garm-operator.mercedes-benz.com:customresourcedefinition',
'garm-operator-controller-manager:serviceaccount',
'garm-operator-leader-election-role:role',
'garm-operator-manager-role:clusterrole',
'garm-operator-manager-role:role',
'garm-operator-leader-election-rolebinding:rolebinding',
'garm-operator-manager-rolebinding:rolebinding',
'garm-operator-serving-cert:certificate',
'garm-operator-selfsigned-issuer:issuer',
'garm-operator-validating-webhook-configuration:validatingwebhookconfiguration',
],
labels=["operator"],
port_forwards=[2345], # dlv debug port
)
docker_build('localhost:5000/controller', '.',
ignore=['.github', 'config', 'docs', 'hack', '*.md']
)