Kevin Paulisse

Results 12 comments of Kevin Paulisse

I ran into this as well. I worked around it by stubbing any classes that are referenced in contracts before you actually load those classes. Then you don't have to...

Since you're looking to override bootstrapping, I suggest that you skip the `--bootstrap-then-exit` step entirely. There is no value, only more complexity, in wrapping a bootstrap script through octocatalog-diff in...

`fatal: Not a valid object name` is an error message coming from git. That's the root of the problem here (that output is piped to tar, so the complaints from...

Most (all) puppet config settings can also be set on the command line, so I think `--command-line` (or `--from-command-line`, `--to-command-line`) will probably do what you need. See [options reference](https://github.com/github/octocatalog-diff/blob/master/doc/optionsref.md) for...

😿 OK, didn't realize it wasn't a command line option. The need would then seem to be creating a custom puppet.conf file to be used when Puppet is run by...

@tuxmea we don't currently have this fully enabled in our setup, so I would need to see what the facts look like when they come out of puppetdb in order...

A possibility with the current code might be to do a `--fact-override` of `$server_facts` with JSON. See: https://github.com/github/octocatalog-diff/blob/master/doc/advanced-override-facts.md#advanced-usage Example: ``` octocatalog-diff -n --debug --display-detail-add --to-fact-override 'server_facts=(json){"testfact":"Hello there"}' + file {...

`--fact-override` is one of those options that can be used either as: - `--fact-override` = do for both "from" and "to" - `--to-fact-override` = do for "to" only - `--from-fact-override`...

The catalog you posted has no resources in it. Without knowing your exact setup it is difficult to suggest a specific solution. My general advice would be to consider how...

his actually looks to me like maybe you're encountering a bug with Puppet 3.x that happens to be working the way you want. Unless `@cluster_name` is being set at the...