Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update helm.md - add missing syntax highlighting for YAML and Dockerfile blocks #14911

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/user-guide/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ source:

Argo CD supports the equivalent of a values file directly in the Application manifest using the `source.helm.valuesObject` key.

```
```yaml
source:
helm:
valuesObject:
Expand All @@ -75,7 +75,7 @@ source:

Alternatively, values can be passed in as a string using the `source.helm.values` key.

```
```yaml
source:
helm:
values: |
Expand Down Expand Up @@ -254,7 +254,7 @@ One way to use this plugin is to prepare your own ArgoCD image where it is inclu

Example `Dockerfile`:

```
```dockerfile
FROM argoproj/argocd:v1.5.7

USER root
Expand Down Expand Up @@ -284,7 +284,7 @@ Some users find this pattern preferable to maintaining their own version of the

Below is an example of how to add Helm plugins when installing ArgoCD with the [official ArgoCD helm chart](https://github.com/argoproj/argo-helm/tree/master/charts/argo-cd):

```
```yaml
repoServer:
volumes:
- name: gcp-credentials
Expand Down