为什么在OpenShift上构建尝试后配置选项会发生变化?

时间:2017-06-23 08:56:09

标签: laravel-5 openshift bitbucket

新手在这里,所以也许我错过了一些明显的东西。

我自己有一个[OpenShift Starter Online]帐户,bitbucket和我的代码,我正在尝试关注这个快速入门:https://github.com/luciddreamz/laravel-ex/blob/master/readme.md

当我创建项目时,我可以配置Build YAML,并输入我的bitbucket repo的参数。

构建失败,出现“Assemble fail”错误。

当我回去看看我的构建YAML时,它现在完全不同了,就像它被完全覆盖了一样。

-confused -

修改

在启动建筑之前

...
spec:
  triggers:
    - type: ImageChange
      imageChange:
        lastTriggeredImageID: >-
          registry.access.redhat.com/rhscl/php-70-******
    - type: ConfigChange
    - type: GitHub
      github:
        secret: ************
  runPolicy: Serial
  source:
    type: Git
    git:
      uri: 'https://**************git'
  strategy:
    type: Source
    sourceStrategy:
      from:
        kind: ImageStreamTag
        namespace: openshift
        name: 'php:7.0'
      env:
        - name: COMPOSER_MIRROR
  output:

建筑后

...
spec:
  triggers:
    - type: ImageChange
      imageChange:
        lastTriggeredImageID: >-
          registry.access.redhat.com/rhscl/php-70-********
    - type: ConfigChange
  runPolicy: Serial
  source:
    type: None
  strategy:
    type: Source
    sourceStrategy:
      from:
        kind: ImageStreamTag
        namespace: openshift
        name: 'php:7.0'
      env:
        - name: COMPOSER_MIRROR
  output:

0 个答案:

没有答案