1

私はGitHubを使用してプロジェクトを保存しています。 PHPのストームを使用して、スクリプトをGitHubリポジトリにプッシュします。Build Triggerを使用してContainer Registryを使用してGoogle Apps Engineを柔軟にデプロイする方法

Google App Engineの柔軟な環境アプリケーションを使用しています。私が私のGitHubリポジトリにプッシュするたびに。 最新のスクリプトは、Google App Engine Flexible EnvironmentのPHPプロジェクトに自動的にデプロイされます.Googleは、GCPコンテナレジストリにビルドトリガを作成しました。ここで

ドッカーと私のPHPのサンプルプロジェクトは

ウェブ/ index.phpを

<?php 

Echo 'this is sample project'; 

?> 

app.yamlを

runtime: php 
env: flex 

runtime_config: 
document_root: web 

manual_scaling: 
instances: 1 

handlers: 

- url: .* 
script: index.php 

を提出しているComposer.json

Googleのクラウドプラットフォームコンテナレジストリビルドを使用して10
{ 
    "require": { 
     "php": "7.1.*" 
    } 
} 

Dockerfile

# Docker: Google App Engine 

FROM gcr.io/google-appengine/php 

はビルドトリガをtrigger.Created。私は、以下のログ

を得た

ビルドロガー

starting build "4d51b494-5f7d-48e5-a2a2-6d7d6a9318a9" 

FETCHSOURCE 
Initialized empty Git repository in /workspace/.git/ 
From https://source.developers.google.com/p/project-id/r/github-test 
* branch 5f9ac268123a3cfef5876034f2933eb83b34cd6d -> FETCH_HEAD 
HEAD is now at 5f9ac26 v 1 
BUILD 
Already have image (with digest): gcr.io/cloud-builders/docker 
Sending build context to Docker daemon 87.04kB 

Step 1/1 : FROM gcr.io/google-appengine/php 
latest: Pulling from google-appengine/php 
Digest: sha256:578584d281828af48df03b85dcdcfd5792e8eb2916567497b56468b 
Status: Downloaded newer image for gcr.io/google-appengine/php:latest 
[91m# Executing 3 build triggers... 
[0mStep 1/1 : COPY . $APP_DIR 
Step 1/1 : RUN chown -R www-data.www-data $APP_DIR 
---> Running in c9d98191fa2b 
Step 1/1 : RUN /build-scripts/composer.sh 
---> Running in ec2b02e5f0d1 
[91m+ DEFAULT_PHP_VERSION=7.1 
+ '[' -f /app/composer.json ']' 
[0m[91m+ '[' -n '' ']' 
+ CMD='php /build-scripts/detect_php_version.php /app/composer.json' 
[0m[91m++ su www-data -c 'php /build-scripts/detect_php_version.php /app/composer.json' 
[0mPHP_VERSION: 7.1 
[91m+ PHP_VERSION=7.1 
+ echo 'PHP_VERSION: 7.1' 
+ '[' 7.1 == exact ']' 
+ '[' 7.1 '!=' 5.6 ']' 
+ '[' 7.1 '!=' 7.0 ']' 
+ '[' 7.1 '!=' 7.1 ']' 
+ '[' 7.1 == 5.6 ']' 
+ '[' 7.1 == 7.0 ']' 
+ COMPOSER_GITHUB_OAUTH_TOKEN= 
+ [[ -n '' ]] 
+ unset COMPOSER_GITHUB_OAUTH_TOKEN 
+ rm -rf /app/vendor 
[0m[91m+ php -d auto_prepend_file= /build-scripts/install_extensions.php /app/composer.json /opt/php/lib/conf.d/extensions.ini 7.1 
[0m[91m+ '[' -n '' ']' 
+ NOSCRIPT=--no-scripts 
+ cd /app 
+ su -m www-data -c 'php -d auto_prepend_file='\'''\'' /usr/local/bin/composer install --no-scripts --no-dev --prefer-dist --optimize-autoloader --no-interaction --no-ansi --no-progress' 
[0m[91mLoading composer repositories with package information 
[0m[91mUpdating dependencies 
[0m[91mNothing to install or update 
[0m[91mWriting lock file 
Generating optimized autoload files 
[0m ---> 1c5b266fe5ef 
Removing intermediate container 473f7595359f 
Removing intermediate container c9d98191fa2b 
Removing intermediate container ec2b02e5f0d1 
Successfully built 1c5b266fe5ef 
Successfully tagged gcr.io/project-id/github-test:5f9ac268123a3cfef5876034f2933eb83b34cd6d 
PUSH 
Pushing gcr.io/project-id/github-test:5f9ac268123a3cfef5876034f2933eb83b34cd6d 
The push refers to a repository [gcr.io/project-id/github-test] 
09e0b63e8b63: Preparing 
9ab9de3bae7c: Preparing 
7ca730235cb1: Preparing 
bca74f739283: Preparing 
83430675961e: Preparing 
c4b086b9d099: Preparing 
acf227e1b2a5: Preparing 
40de2f738e9e: Preparing 
0ef981ddb200: Preparing 
73acc0dfea4b: Preparing 
825db9ad6441: Preparing 
23088c61aa93: Preparing 
122586f0e47f: Preparing 
357a1f7d4b42: Preparing 
d7fe08acdf1d: Preparing 
cd1b43d6d268: Preparing 
23b7338cf1fe: Preparing 
9301d4a8f319: Preparing 
2126b271c428: Preparing 
c4b086b9d099: Waiting 
acf227e1b2a5: Waiting 
40de2f738e9e: Waiting 
0ef981ddb200: Waiting 
73acc0dfea4b: Waiting 
825db9ad6441: Waiting 
23088c61aa93: Waiting 
122586f0e47f: Waiting 
357a1f7d4b42: Waiting 
d7fe08acdf1d: Waiting 
cd1b43d6d268: Waiting 
23b7338cf1fe: Waiting 
9301d4a8f319: Waiting 
2126b271c428: Waiting 
83430675961e: Layer already exists 
bca74f739283: Layer already exists 
c4b086b9d099: Layer already exists 
40de2f738e9e: Layer already exists 
acf227e1b2a5: Layer already exists 
0ef981ddb200: Layer already exists 
73acc0dfea4b: Layer already exists 
825db9ad6441: Layer already exists 
122586f0e47f: Layer already exists 
23088c61aa93: Layer already exists 
357a1f7d4b42: Layer already exists 
d7fe08acdf1d: Layer already exists 
cd1b43d6d268: Layer already exists 
23b7338cf1fe: Layer already exists 
9301d4a8f319: Layer already exists 
2126b271c428: Layer already exists 
09e0b63e8b63: Pushed 
7ca730235cb1: Pushed 
9ab9de3bae7c: Pushed 
5f9ac268123a3cfef5876034f2933eb83b34cd6d: digest: sha256:c604792b8b384e1186b55d11a1d04e8e06051e3f3083c25bd13668dcf size: 4285 
DONE 

私は私がこの

Dockerfile

# Docker: Google App Engine 
    FROM gcr.io/google-appengine/php 
    gcloud app deploy -image-url=gcr.io/project-id/github-test 
ように私のドッキングウィンドウのファイルを変更し、GAE FEにコンテナイメージを展開したいので、

この問題が発生しました

starting build "43508598-4542-4e1c-a9e7-d29343878202" 

FETCHSOURCE 
Initialized empty Git repository in /workspace/.git/ 
From https://source.developers.google.com/p/project-id/r/github-test 
* branch ea7511b88ad5c59736037c37685ea699b5c0 -> FETCH_HEAD 
HEAD is now at ea7511b v 1 
BUILD 
Already have image (with digest): gcr.io/cloud-builders/docker 
Sending build context to Docker daemon 87.04kB 

Error response from daemon: Dockerfile parse error line 7: Unknown instruction: GCLOUD 
ERROR 
ERROR: build step "gcr.io/cloud-builders/[email protected]:59e98ecdfe9229f080085953611ffb708a0df5b7f37a253ec" failed: exit status 1 

gcloudアプリのdeploy -image URLをどこで使用するのか分かりません。

steps: 
# Build the Docker image. 
- name: gcr.io/cloud-builders/docker 
    args: ['build', '-t', 'gcr.io/$PROJECT_ID/app', '.'] 
# Push it to GCR. 
- name: gcr.io/cloud-builders/docker 
    args: ['push', 'gcr.io/$PROJECT_ID/app'] 
# Deploy your Flex app from the image in GCR. 
- name: gcr.io/cloud-builders/gcloud 
    args: ['app', 'deploy', 'app.yaml', '--image-url=gcr.io/$PROJECT_ID/app'] 
# Note that this build pushes this image. 
images: ['gcr.io/$PROJECT_ID/app'] 

があなたのリポジトリにこのファイルを追加し、設定します。

は、このようなものでcloudbuild.yamlファイルを試してみてくださいアプリのgcloudのgitを使ってコンテナレジストリに画像のURLを展開し、トリガに

答えて

2

を構築する方法を、私を助けてブランチにプッシュするときにそれを実行するトリガーをビルドします。

+1

ありがとう、ジェイソンホール、私はあなたの返信としてcloudbuild.yamlを試みた。しかし、私はこのエラーが発生しました。 "既に画像があります(ダイジェスト付き):gcr.io/cloud-builders/gcloud エラー:(gcloud.app.deploy)アプリケーション[apps/project-id]を取得中に権限エラーが発生しました。正しいプロジェクトIDを使用し、プロジェクトのアプリケーションを表示する権限を持っていることを確認してください。私はプロジェクトの請求を有効にし、GAE ADMIN APIも有効にしました。私は正しいプロジェクトIDを使用しています。 – Sattanathan

+1

ああ、私は[email protected]のようにあなたのプロジェクトのビルダーサービスアカウントにアプリケーションの展開権限を与える必要があることを忘れていました。com –

+2

@Sattanathanアプリのデプロイパーミッションの付与に関するドキュメントは、https://cloud.google.com/container-builder/docs/how-to/service-account-permissions#granting_additional_access –

関連する問題