-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathskaffold.yaml
More file actions
44 lines (44 loc) · 1.45 KB
/
skaffold.yaml
File metadata and controls
44 lines (44 loc) · 1.45 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
apiVersion: skaffold/v3
kind: Config
build:
artifacts:
- image: controller
ko:
main: github.com/Azure/karpenter-provider-azure/cmd/controller
dependencies:
paths:
- '**/*.go'
- '**/*.gtpl'
#flags: ['-tags', 'ccp']
manifests:
helm:
releases:
- name: karpenter
chartPath: charts/karpenter
skipBuildDependencies: true
namespace: kube-system
createNamespace: true
setValueTemplates:
controller.image.repository: "{{.IMAGE_REPO_controller}}"
controller.image.tag: "{{.IMAGE_TAG_controller}}"
controller.image.digest: "{{.IMAGE_DIGEST_controller}}"
valuesFiles:
- karpenter-values.yaml
overrides:
controller:
resources:
requests:
cpu: 200m
limits:
cpu: 500m
podAnnotations:
profiles.grafana.com/memory.scrape: "true"
profiles.grafana.com/memory.port_name: "http-metrics"
profiles.grafana.com/cpu.scrape: "true"
profiles.grafana.com/cpu.port_name: "http-metrics"
profiles.grafana.com/goroutine.scrape: "true"
profiles.grafana.com/goroutine.port_name: "http-metrics"
profiles.grafana.com/service_repository: "github.com/Azure/karpenter-provider-azure"
profiles.grafana.com/service_git_ref: "v1.4.0"
deploy:
helm: {}