18 lines
561 B
YAML
18 lines
561 B
YAML
pricingCsv:
|
|
enabled: true
|
|
location:
|
|
URI: /var/kubecost-csv/custom-pricing.csv # local configMap or s3://bucket/path/custom-pricing.csv
|
|
# provider: "AWS"
|
|
# region: "us-east-1"
|
|
# URI: s3://kc-csv-test/pricing_schema.csv # a valid file URI
|
|
# csvAccessCredentials: pricing-schema-access-secret
|
|
|
|
# when using configmap: kubectl create configmap -n kubecost csv-pricing --from-file custom-pricing.csv
|
|
extraVolumes:
|
|
- name: kubecost-csv
|
|
configMap:
|
|
name: csv-pricing
|
|
extraVolumeMounts:
|
|
- name: kubecost-csv
|
|
mountPath: /var/kubecost-csv
|