Bläddra i källkod

GKE Cost consent (#3393)

Stefan McShane 2 år sedan
förälder
incheckning
4ef8de95d9

+ 6 - 7
dashboard/src/components/GCPCostConsent.tsx

@@ -26,7 +26,7 @@ const GCPCostConsent: React.FC<Props> = ({
 }) => {
   const [confirmCost, setConfirmCost] = useState("");
 
-  const costTotal = "224.58";
+  const costTotal = "253.00";
   return (
     <>
       <Modal
@@ -52,16 +52,15 @@ const GCPCostConsent: React.FC<Props> = ({
             <>
               <Spacer height="15px" />
               <Fieldset background="#1b1d2688">
-                • Amazon Elastic Kubernetes Service (EKS) = $73/mo
+                • Google Kubernetes Engine Management (GKE) = $73/mo
                 <Spacer height="15px" />
-                • Amazon EC2:
+                • GKE Compute:
                 <Spacer height="15px" />
-                <Tab />+ System workloads: t3.medium instance (2) = $60.74/mo
+                <Tab />+ System workloads (2) = $90/mo
                 <Spacer height="15px" />
-                <Tab />+ Monitoring workloads: t3.large instance (1) = $60.74/mo
+                <Tab />+ Monitoring workloads (1) = $45/mo
                 <Spacer height="15px" />
-                <Tab />+ Application workloads: t3.medium instance (1) =
-                $30.1/mo
+                <Tab />+ Application workloads (1) = $45/mo
               </Fieldset>
             </>
           }

+ 1 - 1
dashboard/src/components/GCPCredentialsForm.tsx

@@ -127,7 +127,7 @@ const GCPCredentialsForm: React.FC<Props> = ({ goBack, proceed }) => {
       <UploadArea
         setValue={(x: string) => handleLoadJSON(x)}
         label="🔒 GCP Key Data (JSON)"
-        placeholder="Choose a file or drag it here."
+        placeholder="Drag a GCP Service Account JSON here, or click to browse."
         width="100%"
         height="100%"
         isRequired={true}