Questions tagged [gcr.io]
8 questions
3
votes
1 answer
gcr.io/distroless/java:11 use base version from 11:.0.6 to 11.0.8
Changing minor version in distroless java docker image .
Current java project uses maven jib to build the docker images.
The default version of docker image is java 11. The minor java version of this docker image is set to 11.0.6.
How to change java…

Snt
- 41
- 1
- 9
2
votes
0 answers
gcr.io registry, docker buildx multi-plaftorm --push 401: authorization failed
I'm facing an unauthorized issue when using docker buildx build --platform linux/amd64 -f Dockerfile -t gcr.io//:1.0.0 --push . when pushing to gcr.io/. I listed one platform here, but the problem is the same with multiple…

Matt
- 10,633
- 3
- 46
- 49
2
votes
1 answer
Terraform GKE problem pulling from private gcr
As I did not get anywhere with a standard GKE cluster via Terraform (see GKE permission issue on gcr.io with service account based on terraform), I have now created one with a separate node pool. However, I still cannot get a basic container pulled…

Mike
- 3,775
- 8
- 39
- 79
1
vote
0 answers
Kubernetes source docker files
Trying to understand how a cluster is being setup and how different components of the cluster work together, I am looking into different Kubernetes yaml files in particular the kubeapi-server. There I can see that the image is coming…

Ramin Toussi
- 97
- 1
- 11
0
votes
1 answer
Why is this if statement forcing zenity's --auto-close to close immediately?
Got a Debian package set up for a little application I was working on, this isn't really relevant for the question but for some context, the application is a simple bash script that deploys some docker containers on the local machine. But I wanted…

Jordy Mendoza
- 3
- 1
0
votes
1 answer
NGINX Controller Upgrade Using Helm
I installed NGINX Controller 2 years ago using Helm 2 in our AKS clusters, and it pulled the image from quay.io at the time:
quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.27.0
We are now looking to upgrade our NGINX ingress…

user2425909
- 87
- 2
- 11
0
votes
1 answer
gcloud builds submit does not update file
When I run the command,
gcloud builds submit --tag gcr.io/[MY_TAG]
it builds the image and returns a success message.
However, when I run
docker run gcr.io/[MY_TAG]
I get an error on a line of a file that did exist before but I removed it and…

1man
- 5,216
- 7
- 42
- 56
-1
votes
1 answer
How to docker push app (flask-python + redis) to gcr.io & deploy app to google kubernetes
How to push my app (using python-flask + redis) to gcr.io and deploy to google kubernetes (by yaml file)?
And I want to set env variable for my app
import os
import redis
from flask import Flask
from flask import request, redirect, render_template,…