Skip to content

Commit

Permalink
Add SetKeyDelimiter to the README
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed Dec 6, 2019
1 parent a73303e commit 9a405be
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,33 @@ if err != nil {
}
```

If you want to unmarshal configuration where the keys themselves contain dot (the default key delimiter),
you have to change the delimiter:

```go
v := viper.New()
v.SetKeyDelimiter("::")

v.SetDefault("chart::values", map[string]interface{}{
"ingress": map[string]interface{}{
"annotations": map[string]interface{}{
"traefik.frontend.rule.type": "PathPrefix",
"traefik.ingress.kubernetes.io/ssl-redirect": "true",
},
},
})

type config struct {
Chart struct{
Values map[string]interface{}
}
}

var C config

viper.Unmarshal(&C)
```

Viper uses [github.com/mitchellh/mapstructure](https://github.com/mitchellh/mapstructure) under the hood for unmarshaling values which uses `mapstructure` tags by default.

### Marshalling to string
Expand Down

0 comments on commit 9a405be

Please sign in to comment.