Skip to content

Commit 6d703ec

Browse files
authored
Merge pull request #66 from cbuto/fix-oci-docs
docs: set OCI_CONFIG_FILE env var for oracle storage backend
2 parents a668d8d + a1d6f6a commit 6d703ec

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/chartmuseum/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
description: Host your own Helm Chart Repository
33
name: chartmuseum
4-
version: 3.10.0
4+
version: 3.10.1
55
appVersion: 0.16.0
66
home: https://github.com/helm/chartmuseum
77
icon: https://raw.githubusercontent.com/chartmuseum/charts/main/logo.jpg

src/chartmuseum/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Please also see https://github.com/helm/chartmuseum
1515
- [Prerequisites](#prerequisites)
1616
- [Configuration](#configuration)
1717
- [Installation](#installation)
18+
- [Add repository](#add-repository)
19+
- [Install chart (Helm v3)](#install-chart-helm-v3)
20+
- [Install chart (Helm v2)](#install-chart-helm-v2)
21+
- [Installation using custom config](#installation-using-custom-config)
1822
- [Using with Amazon S3](#using-with-amazon-s3)
1923
- [permissions grant with access keys](#permissions-grant-with-access-keys)
2024
- [permissions grant with IAM instance profile](#permissions-grant-with-iam-instance-profile)
@@ -550,7 +554,7 @@ kubectl create secret generic chartmuseum-secret --from-file=config=".oci/config
550554
Then you can either use a `VALUES` yaml with your values or set those values in the command line:
551555

552556
```shell
553-
helm install chartmuseum/chartmuseum --debug --set env.open.STORAGE=oracle,env.open.STORAGE_ORACLE_COMPARTMENTID=ocid1.compartment.oc1..abc123,env.open.STORAGE_ORACLE_BUCKET=myocibucket,env.open.STORAGE_ORACLE_PREFIX=chartmuseum,oracle.secret.enabled=true,oracle.secret.name=chartmuseum-secret
557+
helm install chartmuseum/chartmuseum --debug --set env.open.STORAGE=oracle,env.open.STORAGE_ORACLE_COMPARTMENTID=ocid1.compartment.oc1..abc123,env.open.STORAGE_ORACLE_BUCKET=myocibucket,env.open.STORAGE_ORACLE_PREFIX=chartmuseum,oracle.secret.enabled=true,oracle.secret.name=chartmuseum-secret,env.open.OCI_CONFIG_FILE=/home/chartmuseum/.oci/config
554558
```
555559

556560
If you prefer to use a yaml file:
@@ -562,6 +566,7 @@ env:
562566
STORAGE_ORACLE_COMPARTMENTID: ocid1.compartment.oc1..abc123
563567
STORAGE_ORACLE_BUCKET: myocibucket
564568
STORAGE_ORACLE_PREFIX: chartmuseum
569+
OCI_CONFIG_FILE: /home/chartmuseum/.oci/config
565570

566571
oracle:
567572
secret:

0 commit comments

Comments
 (0)