當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript registry.Registry.pipeline類代碼示例

本文整理匯總了TypeScript中core/registry.Registry.pipeline的典型用法代碼示例。如果您正苦於以下問題:TypeScript Registry.pipeline類的具體用法?TypeScript Registry.pipeline怎麽用?TypeScript Registry.pipeline使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Registry.pipeline類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: expect

 mock.inject(function() {
   const config: IStageTypeConfig = { key: 'a', alias: 'a1' } as IStageTypeConfig;
   Registry.pipeline.registerStage(config);
   expect(Registry.pipeline.getStageConfig({ type: 'a' } as IStage)).toEqual(config);
   expect(Registry.pipeline.getStageConfig({ type: 'a1' } as IStage)).toEqual(config);
   expect(Registry.pipeline.getStageConfig({ type: 'b' } as IStage)).toBe(null);
 }),
開發者ID:emjburns,項目名稱:deck,代碼行數:7,代碼來源:PipelineRegistry.spec.ts

示例2: getKindConfig

 public static getKindConfig(artifact: IArtifact, isDefault: boolean): IArtifactKindConfig {
   if (artifact == null || artifact.customKind || artifact.kind === 'custom') {
     return Registry.pipeline.getCustomArtifactKind();
   }
   const kinds = isDefault ? Registry.pipeline.getDefaultArtifactKinds() : Registry.pipeline.getMatchArtifactKinds();
   const inferredKindConfig = kinds.find(k => k.type === artifact.type);
   if (inferredKindConfig !== undefined) {
     return inferredKindConfig;
   }
   return Registry.pipeline.getCustomArtifactKind();
 }
開發者ID:spinnaker,項目名稱:deck,代碼行數:11,代碼來源:expectedArtifact.service.ts

示例3: module

module(S3_ARTIFACT, []).config(() => {
  Registry.pipeline.registerArtifactKind({
    label: 'S3',
    type: 's3/object',
    description: 'An S3 object.',
    key: 's3',
    isDefault: false,
    isMatch: true,
    controller: function(artifact: IArtifact) {
      'ngInject';
      this.artifact = artifact;
      this.artifact.type = 's3/object';
    },
    controllerAs: 'ctrl',
    editCmp: S3ArtifactEditor,
    template: `
<div class="col-md-12">
  <div class="form-group row">
    <label class="col-md-2 sm-label-right">
      Object path
      <help-field key="pipeline.config.expectedArtifact.s3.name"></help-field>
    </label>
    <div class="col-md-8">
      <input type="text"
             placeholder="s3://bucket/path/to/file"
             class="form-control input-sm"
             ng-model="ctrl.artifact.name"/>
    </div>
  </div>
</div>
`,
  });
});
開發者ID:mizzy,項目名稱:deck,代碼行數:33,代碼來源:s3.artifact.ts

示例4: module

module(DOCKER_ARTIFACT, []).config(() => {
  Registry.pipeline.registerArtifactKind({
    label: 'Docker',
    type: 'docker/image',
    isDefault: false,
    isMatch: true,
    // docker hub image artifacts can be bound to manifests without an associated artifact-account
    isPubliclyAccessible: true,
    description: 'A Docker image to be deployed.',
    key: 'docker',
    controller: function(artifact: IArtifact) {
      'ngInject';
      this.artifact = artifact;
      this.artifact.type = 'docker/image';
    },
    controllerAs: 'ctrl',
    editCmp: DockerArtifactEditor,
    template: `
<div class="col-md-12">
  <div class="form-group row">
    <label class="col-md-2 sm-label-right">
      Docker image
      <help-field key="pipeline.config.expectedArtifact.docker.name"></help-field>
    </label>
    <div class="col-md-8">
      <input type="text"
             placeholder="gcr.io/project/image"
             class="form-control input-sm"
             ng-model="ctrl.artifact.name"/>
    </div>
  </div>
</div>
`,
  });
});
開發者ID:mizzy,項目名稱:deck,代碼行數:35,代碼來源:docker.artifact.ts

示例5: module

module(GCS_ARTIFACT, []).config(() => {
  Registry.pipeline.mergeArtifactKind({
    label: 'GCS',
    typePattern: ArtifactTypePatterns.GCS_OBJECT,
    type: 'gcs/object',
    description: 'A GCS object.',
    key: 'gcs',
    isDefault: false,
    isMatch: true,
    controller: function(artifact: IArtifact) {
      this.artifact = artifact;
      this.artifact.type = 'gcs/object';
    },
    controllerAs: 'ctrl',
    template: `
<div class="col-md-12">
  <div class="form-group row">
    <label class="col-md-2 sm-label-right">
      Object path
      <help-field key="pipeline.config.expectedArtifact.gcs.name"></help-field>
    </label>
    <div class="col-md-8">
      <input type="text"
             placeholder="gs://bucket/path/to/file"
             class="form-control input-sm"
             ng-model="ctrl.artifact.name"/>
    </div>
  </div>
</div>
`,
  });
});
開發者ID:emjburns,項目名稱:deck,代碼行數:32,代碼來源:gcs.artifact.ts

示例6: module

module(GITLAB_ARTIFACT, []).config(() => {
  Registry.pipeline.mergeArtifactKind({
    label: 'Gitlab',
    typePattern: ArtifactTypePatterns.GITLAB_FILE,
    type: 'gitlab/file',
    description: 'A file stored in git, hosted by Gitlab.',
    key: 'gitlab',
    isDefault: false,
    isMatch: true,
    controller: function(artifact: IArtifact) {
      this.artifact = artifact;
      this.artifact.type = 'gitlab/file';
    },
    controllerAs: 'ctrl',
    template: `
<div class="col-md-12">
  <div class="form-group row">
    <label class="col-md-2 sm-label-right">
      File path
      <help-field key="pipeline.config.expectedArtifact.git.name"></help-field>
    </label>
    <div class="col-md-8">
      <input type="text"
             placeholder="manifests/frontend.yaml"
             class="form-control input-sm"
             ng-model="ctrl.artifact.name"/>
    </div>
  </div>
</div>
`,
  });
});
開發者ID:emjburns,項目名稱:deck,代碼行數:32,代碼來源:gitlab.artifact.ts


注:本文中的core/registry.Registry.pipeline類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。