Arve Seljebu
Arve Seljebu
Thanks for the swift response! Heh, almost same situation here, trying to finish my (master) thesis. I'll try using a cut, thanks again.
I've debugged some more, and it seems to only happen when using `--insecure-registry=registry.default`. Unable to reproduce when using same registry with ingress and cert-manager that has fully qualified domain name.
Reproduced with `--insecure` and `--insecure-registry registry.default` also. Unable to reproduce if `Service` listens on port 443, for example: ```yaml apiVersion: v1 kind: Service metadata: name: registry namespace: default spec: selector:...
@arxpoetica Before sending document body to the client, sapper could see if any replacers have been defined. For example, adding a replacer for IE user-agents: ```js express() .use( function (req,...
Another approach could be to give back control to a handler defined in the middleware options: ```js sapper.middleware({ done: (req, res, body) => { if (req.get('user-agent').toLowerCase().includes("msie")) { // do not...
This can be solved with [metalsmith-changed](https://www.npmjs.com/package/metalsmith-changed) like this: ``` Metalsmith(__dirname) .use(metadata) // removes files with same stats.ctime as previous build // does not remove files which doesn't have stats.ctime .use(changed)...
Work around: ``` js var el = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); el.setAttribute('xmlns', 'http://www.w3.org/2000/svg'); ```
This works for me with `docker run -it -v "$PWD:/code" bats/bats:latest /code/test`: ``` setup() { bats_load_library bats-support bats_load_library bats-assert } @test "Check welcome message" { run project assert_output --partial 'Welcome...
For other finding this through google: https://pypi.python.org/pypi/glob2
> > `podManagementPolicy` field is immutable after statefulset is created. > > Ran into this issue. I scaled the operator to zero replicas, then deleted the statefulset with `--cascade=orphan`, then...