pizzapim

Results 11 comments of pizzapim

I encountered this issue as well but the above suggestions did not fix it... Did anybody find a reliable fix after this time?

Hi, I encountered this error too. I started manually executing each command in /app/entrypoint.sh and I am getting the following problem: ```bash root@4ea5a70e74fc:/app# ${ANDROID_HOME}/tools/bin/avdmanager create avd -n Pixel -k "system-images;android-26;google_apis;x86"...

Managed to fix this one. A previous run already created the directory and it crashes if it is already available. Found out using the -v verbose argument.

I used the .NET portability analyzer on the project, here is the result: [ApiPortAnalysis(1).xlsx](https://github.com/nstlaurent/DoomLauncher/files/5269349/ApiPortAnalysis.1.xlsx) It seems the Octokit and System.Data.SQLite assemblies are not supported for the newest Mono version. Additionally...

What I mean is to localize the default items that are shown for a particular language. For example, for Dutch I would expect "Hagelslag" to be in the default list...

To me this looks like an upstream Kubernetes bug. This conversation mentions some current problems with merge strategies with respect to some fields including ports: https://github.com/kubernetes-sigs/kustomize/issues/3111 > the current consensus...

Thanks for the reply, that makes total sense. Mentioning the kubeconfig option in the README would be useful for new users.

Apparently there exists an experimental feature called ApplySets, which might be something Kubenix can use for pruning: https://kubernetes.io/blog/2023/05/09/introducing-kubectl-applyset-pruning/

I haven't looked in the code, but looked at the [swagger API JSON](https://raw.githubusercontent.com/kubernetes/kubernetes/master/api/openapi-spec/swagger.json) which Kubenix consumes. It seems this information is curiously not present in the resource definitions, which shows...

BTW, is there any problem you encounter when you specify the namespace on resources that don't need it? Take this example: ```yaml apiVersion: v1 kind: Namespace metadata: name: test namespace:...