主頁(yè) > 知識(shí)庫(kù) > 在Google Container Engine上申請(qǐng)創(chuàng)建Docker容器

在Google Container Engine上申請(qǐng)創(chuàng)建Docker容器

熱門標(biāo)簽:AI智能客服電銷機(jī)器人穩(wěn)定嗎 許昌真人電銷機(jī)器人價(jià)格 界首高德地圖標(biāo)注店 方舟地圖標(biāo)注位置 德州智能外呼系統(tǒng)收費(fèi) 世界地圖標(biāo)注地理 外呼系統(tǒng)的呼叫轉(zhuǎn)移在哪里設(shè)置 cass中宗地圖標(biāo)注四至 漯河銷售外呼系統(tǒng)

(1)要申請(qǐng)一個(gè)Google賬戶。
(2)激活Google賬單,即綁定支付信用卡,為使用Google的服務(wù)買單。激活過(guò)程中為了驗(yàn)證信用卡是否可用,需要支付1美元的費(fèi)用。
激活支付地址:https://console.developers.google.com/billing?_ga=1.62759852.1080048005.1441690490
支付激活后,可以看到能夠使用的一些服務(wù),同時(shí)看到可以免費(fèi)使用60天。

(3)激活Google API
激活后,可以使用如下兩種服務(wù):
Google Container Engine API
Google Compute Engine and associated APIs
創(chuàng)建一個(gè)gerry-test-proj工程:

然后點(diǎn)擊建立,會(huì)自動(dòng)跳轉(zhuǎn)到當(dāng)前創(chuàng)建好的工程中:

(4)安裝gcloud

到Google Cloud SDK上可以下載到各個(gè)版本的客戶端:https://cloud.google.com/sdk/#windows
安裝方法也有說(shuō)明。安裝完成后,可以看下gcloud的使用方法:

復(fù)制代碼
代碼如下:

root@gerryyang:~# gcloud -h
Usage: gcloud [optional flags] group | command>
group may be auth | components | compute | config | container |
deployment-manager | dns | sql | topic
command may be docker | feedback | help | info | init | version
 
The *gcloud* CLI manages authentication, local configuration, developer 
workflow, and interactions with the Google Cloud Platform APIs. 
 
optional flags: 
  --account ACCOUNT      Google Cloud Platform user account to use for 
                         invocation. 
  --format FORMAT        Format for printed output. 
  --help                 Display detailed help. 
  --log-http LOG_HTTP    Logs all HTTP server requests and responses to stderr. 
                         (true/false) 
  --project PROJECT_ID   Google Cloud Platform project ID to use for this 
                         invocation. 
  --quiet, -q            Disable all interactive prompts. 
  --trace-token TRACE_TOKEN 
                         Token used to route traces of service requests for 
                         investigation of issues. 
  --user-output-enabled USER_OUTPUT_ENABLED 
                         Control whether user intended output is printed to the 
                         console.  (true/false) 
  --verbosity VERBOSITY  Override the default verbosity for this command.  This 
                         must be a standard logging verbosity level: [debug, 
                         info, warning, error, critical, none] (Default: 
                         [warning]). 
  -h                     Print a summary help and exit. 
  -v, --version          Print version information. 
 
command groups: 
  auth                   Manage oauth2 credentials for the Google Cloud SDK. 
  components             List, install, update, or remove Google Cloud SDK 
                         components or packages. 
  compute                Read and manipulate Google Compute Engine resources. 
  config                 View and edit Google Cloud SDK properties. 
  container              Deploy and manage clusters of machines for running 
                         containers. 
  deployment-manager     Manage deployments of cloud resources. 
  dns                    Manage your Cloud DNS managed-zones and record-sets. 
  sql                    Manage Cloud SQL databases. 
  topic                  gcloud supplementary help. 
 
commands: 
  docker                 Provides the docker CLI access to the Google Container 
                         Registry. 
  feedback               Provide feedback to the Google Cloud SDK team. 
  help                   Prints detailed help messages for the specified 
                         commands. 
  info                   Display information about the current gcloud 
                         environment. 
  init                   Create and initialize a gcloud workspace in the current 
                         directory. 
  version                Print version information for Cloud SDK components. 

然后使用gcloud登陸GCP賬戶(即,完成認(rèn)證):

后記
越來(lái)越多的公司開(kāi)始使用容器來(lái)構(gòu)建應(yīng)用,它可以方便地實(shí)現(xiàn)擴(kuò)展、復(fù)制以及升級(jí)。這個(gè)新服務(wù)提供了一種全新的途徑來(lái)管理大量容器,免除了涉及到多容器業(yè)務(wù)流操作的大量底層工作。
Google于2014年11月首次對(duì)外發(fā)布了容器引擎,不過(guò)只是預(yù)覽版本。隨著這次商業(yè)性的發(fā)布,Google確保該服務(wù)已經(jīng)具備好應(yīng)對(duì)生產(chǎn)環(huán)境的各種條件,并承諾99.95%的正常運(yùn)行時(shí)間。
另外,定價(jià)也已經(jīng)確定。少于6個(gè)節(jié)點(diǎn)的用戶可以免費(fèi)使用,若需管理多于6個(gè)節(jié)點(diǎn)則需為每個(gè)集群支付$0.15/小時(shí)的費(fèi)用。
Google自身早已使用容器來(lái)運(yùn)行Internet服務(wù),例如搜索和郵箱服務(wù)。
通過(guò)容器,公司可以讓每個(gè)組件包含一部分應(yīng)用,以模塊化的方式構(gòu)建它們的應(yīng)用,這就是廣為人知的微服務(wù)架構(gòu)。當(dāng)應(yīng)用需要更新時(shí),一個(gè)新的容器可以輕易地實(shí)現(xiàn)替換,以減小對(duì)操作的影響。
容器也為DevOps形式的軟件開(kāi)發(fā)創(chuàng)造了條件。這種情況下,開(kāi)發(fā)者在開(kāi)發(fā)應(yīng)用時(shí)快速地迭代,通過(guò)在容器中打包,每個(gè)獨(dú)立的組件都可以輕松地進(jìn)行測(cè)試。
通過(guò)這個(gè)服務(wù),用戶在單次操作中,完成對(duì)多容器復(fù)雜應(yīng)用的部署。GCE會(huì)記錄操作日志,以確保每個(gè)容器的正確運(yùn)行,它也提供一條簡(jiǎn)易的途徑,通過(guò)增加額外的處理器或內(nèi)存,來(lái)調(diào)整集群的大小。

標(biāo)簽:亳州 大連 白城 保定 黔南 興安盟 吉安 嘉峪關(guān)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《在Google Container Engine上申請(qǐng)創(chuàng)建Docker容器》,本文關(guān)鍵詞  在,Google,Container,Engine,上,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《在Google Container Engine上申請(qǐng)創(chuàng)建Docker容器》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于在Google Container Engine上申請(qǐng)創(chuàng)建Docker容器的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章