Opiniones sobre Aprovisiona una infraestructura de nube con Gemini

13982 opiniones

Abhishek K. · Se revisó hace más de 1 año

WEI LIN S. · Se revisó hace más de 1 año

Stone Y. · Se revisó hace más de 1 año

Willie S. · Se revisó hace más de 1 año

EW W. · Se revisó hace más de 1 año

BHANU K. · Se revisó hace más de 1 año

NARVEKAR S. · Se revisó hace más de 1 año

Neelakanta K. · Se revisó hace más de 1 año

Alekhya D. · Se revisó hace más de 1 año

Chi Chien C. · Se revisó hace más de 1 año

Jessica W. · Se revisó hace más de 1 año

Aditi A. · Se revisó hace más de 1 año

Bhavika .. · Se revisó hace más de 1 año

YuLin S. · Se revisó hace más de 1 año

Ken C. · Se revisó hace más de 1 año

Dashmeen G. · Se revisó hace más de 1 año

Chollangi J. · Se revisó hace más de 1 año

benson l. · Se revisó hace más de 1 año

Tzu Hua C. · Se revisó hace más de 1 año

Akash C. · Se revisó hace más de 1 año

open o. · Se revisó hace más de 1 año

紹育 高. · Se revisó hace más de 1 año

Hong-Yu L. · Se revisó hace más de 1 año

Mark Chun W. · Se revisó hace más de 1 año

Most of the commands provided by Gemini did not work as expected. Below is a summary of the Gemini commands, the issues faced, and the alternative commands used to complete the tasks successfully: Cluster Creation: Gemini Command: gcloud container clusters create gemini-demo --location=us-east1 --cluster-version=latest --enable-autopilot Issue: This command failed due to unspecified or incorrect parameters. Command Used Instead: gcloud container clusters create-auto gemini-demo --region us-east1 Note: The create-auto command worked successfully, setting up an Autopilot cluster in the specified region. Creating Deployment: Gemini Command: kubectl apply -f hello-server-deployment.yaml Issue: The command expected a specific YAML configuration file, which was either missing or not correctly set up. Command Used Instead: kubectl create deployment hello-server --image=us-docker.pkg.dev/google-samples/containers/gke/hello-app:1.0 Note: This command directly created the deployment using a specified container image. Exposing the Deployment: Gemini Command: kubectl expose deployment hello-server --type LoadBalancer --port 80 --target-port 8080 Issue: The command syntax was not properly recognized (missing equal signs for flags). Command Used Instead: kubectl expose deployment hello-server --type=LoadBalancer --port=80 --target-port=8080 Note: Adding the equal signs (=) after the flags resolved the issue. Retrieving Service Details: Gemini Command: kubectl get service hello-server -o jsonpath='{.status.loadBalancer.ingress[*].ip}' Issue: The command returned an error, possibly due to incorrect JSON path syntax or lack of ingress IP at the moment. Command Used Instead: kubectl get service hello-server Note: This simpler command provided the necessary service information, including the external IP, in a readable format. Summary: While Gemini provided commands that were close to achieving the desired tasks, many of them did not work as intended due to syntax errors, missing configuration files, or incorrect command parameters. The alternative commands used were simpler and successfully executed the required tasks.

Sunny D. · Se revisó hace más de 1 año

No garantizamos que las opiniones publicadas provengan de consumidores que hayan comprado o utilizado los productos. Google no verifica las opiniones.