Open rolandkool opened 7 years ago
Hi,
I had the same problem with Strings. It comes from the function "fuzzy_compare" of gareth's swagger puppet generator (used to generate this module). A pull request has been opened to fix it #5
You should update your kubernetes module with this fix. I have been using it since a day. Seems ok so far
Hi
When you have a managed kubernetes_resource_quota or kubernetes_limit_range and you change one of the configured limits, it fails with:
Example resource
kubernetes_resource_quota { 'my_quota': ensure => present, metadata => { namespace => 'mynamespace', }, spec => { hard => { 'limits.cpu' => '2', 'limits.memory' => '16Gi', } }, }
If you change limits.cpu from 2 to 3 or change the memory setting, you'll run into that error.