Commit 256f8fcd authored by Prout, Ryan's avatar Prout, Ryan
Browse files

update readme

parent a6b7ec75
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -218,4 +218,22 @@ spec:
    - Ingress
```

### The Values File

Helm templates provide built-in objects. One of these objects is "Values". This object provides access to values passed into the chart. The contents, in this case, come from [values.yaml](https://code.ornl.gov/ryu/slate_helm_examples/-/blob/prout-dev/charts/minio-standalone/values.yaml):

```
# This can be used to provide variables to your chart. 
# A simple example would be resources in the minio-standalone-deployment.yaml:

minio:
  resources:
    requests:
      cpu: 2
      memory: 1Gi
    limits:
      cpu: 2
      memory: 1Gi
```

## Putting it all together
 No newline at end of file