Kimmo Lehto
Kimmo Lehto
Consider signing the CLI gem, see http://guides.rubygems.org/security/ Many of the dependencies are not signed so I'm not sure if it does any good, but it's a fairly simple procedure to...
Add a `ChangeResolver::ResultSet` class. - Removes the need for `upgraded_services.select { |s| s.split('/')[0] == stack }` type of filtering in report generation. - Changes things such as `changes.added_stacks` to `changes.stacks.added`...
The completer should somehow at least figure out available subcommands for plugins if not their parameters. ```console $ kontena plugin install cloud $ kontena cloud login logout master $ kontena...
### Is your feature request related to a problem? Please describe. In many software packages, the first and often the only necessary point of configuration documentation is the default configuration...
### Is your feature request related to a problem? Please describe. It should simplify the installation and usage and also would be easier for documentation. I believe doing something like...
### Is your feature request related to a problem? Please describe. It could be handy if k0s could filter out all the global config options from a configuration and only...
Documentation should include a list of directories and their purposes, what goes in there and expected permissions etc. - data-dir (/var/lib/k0s) - run-dir (/var/run/k0s) - bin-dir (/var/lib/k0s/bin?)
As a `k0s install controller --single` installed k0s is fairly different and can't actually be used as a controller for other nodes, maybe there should be a separate `k0s install...
Freeze does not work: ```ruby > r = RecursiveOpenStruct.new( { hello: 'world', foo: [ {bar: :baz} ] }, recurse_over_arrays: true) > r.freeze > r.delete_field('foo') > r => # > r.bar...
Perhaps a change in ta-lib? Example in README: ```ruby [1, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3].indicator(:sma_5) => [nil, nil, nil, nil, 2.2, 2.4, 2.6, 2.4, 2.6,...