Jan von Löwenstein
Jan von Löwenstein
Given the following module using TypeFamilyDependencies ``` 21:21 $ cat src/Bug.hs {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeFamilyDependencies #-} module Bug where type family F a = b | b...
Right now the `helmExecute` step has a mandatory parameter [`Image`](https://github.com/SAP/jenkins-library/blob/ea001341cba984570c09c511cf945e055681a48f/pkg/kubernetes/helm.go#L40) that isn’t even used in the implementation. I see two problems with this: 1. The `helmExecute` step can be used...
Refreshing of expired tokens seems to be broken. 1. Fog::Image::OpenStack::V1::Real#initialize calls `authenticate` from included core module. Then @path is set to a supported version by https://github.com/fog/fog-openstack/blob/master/lib/fog/openstack/image_v1.rb#L119-L124. 2. Fog::OpenStack::Common#request rescues from...
Some model implementation have a `ready?` method to check if a resource is ready. Compare the following two examples: https://github.com/fog/fog-openstack/blob/4217d76368aa0c570b268e96a3cf21f760ccc967/lib/fog/compute/openstack/models/image.rb#L40 https://github.com/fog/fog-openstack/blob/4217d76368aa0c570b268e96a3cf21f760ccc967/lib/fog/image/openstack/v2/models/image.rb All model classes should implement `ready?`. Resources should know...
### Summary If I call `pack build --run-image my-run-image`, but an extension changes the run image via the following Dockerfile, the application image base layers are taken from `their-run-image`. ```Dockerfile...
Right now the spec prohibits an update from e.g. `run:1.1` to `run:1.2` (unless `force: true` is used) , with this [statement](https://github.com/buildpacks/spec/blob/29d53ac429463ab3c17c7e75c299850118e2dbc6/platform.md?plain=1#L955) > - **Else if** ` is `false`, the provided...
With recent versions of Kubernetes we should no longer rely on the default service account having the necessary permissions to run the director / CPI. - figure out necessary permissions...
Steps to reporduce: - deploy a release - `bosh -d ssh -c 'cat /etc/hosts'` The entries in /etc/hosts are not valid. Workaround: `bosh -d --recreate`
Looking at https://endoflife.date/tomcat - the `10.0` line has reached EOL already well over a year ago - the `8.5` line will reach EOL in about 5 days We should likely...
You can specify multiple source packages in the `stack.yml` file. Each of them can have its own .cabal file. vscode however does not find any code besides from `base` package...