We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
follows up on #642
Steps:
apiVersion: apps/v1kind: Deployment metadata: annotations: app.quarkus.io/commit-id: 874731470682e3f213506357d2f9887bab63be83 app.quarkus.io/build-timestamp: 2025-04-05 - 22:16:28 +0000 labels: app.kubernetes.io/name: code-with-quarkus3 app.kubernetes.io/version: 1.0.0-SNAPSHOT name: code-with-quarkus3 spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: code-with-quarkus3 app.kubernetes.io/version: 1.0.0-SNAPSHOT template: metadata: annotations: app.quarkus.io/commit-id: 874731470682e3f213506357d2f9887bab63be83 app.quarkus.io/build-timestamp: 2025-04-05 - 22:16:28 +0000 labels: app.kubernetes.io/name: code-with-quarkus3 app.kubernetes.io/version: 1.0.0-SNAPSHOT spec: containers: - env: - name: KUBERNETES_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace image: minikube/adietish/code-with-quarkus3:1.0.0-SNAPSHOT imagePullPolicy: IfNotPresent name: code-with-quarkus3 ports: - containerPort: 8080 name: http protocol: TCP --- apiVersion: v1 kind: Service metadata: annotations: app.quarkus.io/commit-id: 874731470682e3f213506357d2f9887bab63be83 app.quarkus.io/build-timestamp: 2025-04-05 - 22:16:28 +0000 labels: app.kubernetes.io/name: code-with-quarkus3 app.kubernetes.io/version: 1.0.0-SNAPSHOT name: code-with-quarkus3 spec: ports: - name: http nodePort: 31462 port: 80 protocol: TCP targetPort: 8080 selector: app.kubernetes.io/name: code-with-quarkus3 app.kubernetes.io/version: 1.0.0-SNAPSHOT type: NodePort
selector
Service
Result: It should repot 1 matching because the labels in the template for the Deployment match the selector.
Deployment
The text was updated successfully, but these errors were encountered:
adietish
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
follows up on #642
Steps:
selector
in theService
and verify how many resources are matching it:Result:
It should repot 1 matching because the labels in the template for the
Deployment
match the selector.The text was updated successfully, but these errors were encountered: