thanos-community / thanos-operator

WIP: Operator to manage Thanos installation
Apache License 2.0
22 stars 3 forks source link

Add util func to wrangle optional types to string #52

Closed saswatamcode closed 3 months ago

saswatamcode commented 3 months ago

Working on store/ruler which have a lot of basic type optionals, I think having something like this would really help avoid bunch of typecasts and nil-checks in builder logic

I kind of user generic as something like this feels ideal for that. But can do same with interface{} as well, just need to jump through some reflect pkg hoops