diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 11:51:28 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 11:51:28 +0000 |
| commit | 2559ea46c49d36aae1e22c20c55edd4d6a992f6b (patch) | |
| tree | 3b25795c5c6e76dcd3ddf8c3b0e6e63d2be09591 | |
| parent | 3bbc6bc773e3b7c1e87786b1e88ad84beaadd2c8 (diff) | |
automatic import of python-cloudcomponents-cdk-codepipeline-anchore-inline-scan-actionopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-cloudcomponents-cdk-codepipeline-anchore-inline-scan-action.spec | 355 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 357 insertions, 0 deletions
@@ -0,0 +1 @@ +/cloudcomponents.cdk-codepipeline-anchore-inline-scan-action-2.1.0.tar.gz diff --git a/python-cloudcomponents-cdk-codepipeline-anchore-inline-scan-action.spec b/python-cloudcomponents-cdk-codepipeline-anchore-inline-scan-action.spec new file mode 100644 index 0000000..baeff0c --- /dev/null +++ b/python-cloudcomponents-cdk-codepipeline-anchore-inline-scan-action.spec @@ -0,0 +1,355 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +Version: 2.1.0 +Release: 1 +Summary: CodePipeline action to integrate Anchore Engine into your pipeline +License: MIT +URL: https://github.com/cloudcomponents/cdk-components +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/09/d9/657596df5fafedc4c6683ac908a1e874b49c580fab0d9852fd8fc9ed0053/cloudcomponents.cdk-codepipeline-anchore-inline-scan-action-2.1.0.tar.gz +BuildArch: noarch + +Requires: python3-aws-cdk-lib +Requires: python3-constructs +Requires: python3-jsii +Requires: python3-publication + +%description +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action) +[](https://pypi.org/project/cloudcomponents.cdk-codepipeline-anchore-inline-scan-action/) + +> CodePipeline action to integrate [Anchore Engine](https://docs.anchore.com/current/) into your pipeline + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action +``` + +Python: + +```bash +pip install cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +``` + +## How to use + +```python +import { CodePipelineAnchoreInlineScanAction } from '@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action'; +import { CodePipelineDockerfileLinterAction } from '@cloudcomponents/cdk-codepipeline-dockerfile-linter-action'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Pipeline, Artifact } from 'aws-cdk-lib/aws-codepipeline'; +import { CodeCommitSourceAction } from 'aws-cdk-lib/aws-codepipeline-actions'; +import { Construct } from 'constructs'; + +export class ContainerAuditStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'container-audit-repository', + }); + + const sourceArtifact = new Artifact(); + + const sourceAction = new CodeCommitSourceAction({ + actionName: 'CodeCommit', + repository, + output: sourceArtifact, + branch: 'master', + }); + + const linterAction = new CodePipelineDockerfileLinterAction({ + actionName: 'Linter', + input: sourceArtifact, + }); + + const vulnScanAction = new CodePipelineAnchoreInlineScanAction({ + actionName: 'VulnScan', + input: sourceArtifact, + }); + + new Pipeline(this, 'Pipeline', { + pipelineName: 'container-audit-pipeline', + stages: [ + { + stageName: 'Source', + actions: [sourceAction], + }, + { + stageName: 'Audit', + actions: [linterAction, vulnScanAction], + }, + ], + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/LICENSE) + + + + +%package -n python3-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +Summary: CodePipeline action to integrate Anchore Engine into your pipeline +Provides: python-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action) +[](https://pypi.org/project/cloudcomponents.cdk-codepipeline-anchore-inline-scan-action/) + +> CodePipeline action to integrate [Anchore Engine](https://docs.anchore.com/current/) into your pipeline + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action +``` + +Python: + +```bash +pip install cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +``` + +## How to use + +```python +import { CodePipelineAnchoreInlineScanAction } from '@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action'; +import { CodePipelineDockerfileLinterAction } from '@cloudcomponents/cdk-codepipeline-dockerfile-linter-action'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Pipeline, Artifact } from 'aws-cdk-lib/aws-codepipeline'; +import { CodeCommitSourceAction } from 'aws-cdk-lib/aws-codepipeline-actions'; +import { Construct } from 'constructs'; + +export class ContainerAuditStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'container-audit-repository', + }); + + const sourceArtifact = new Artifact(); + + const sourceAction = new CodeCommitSourceAction({ + actionName: 'CodeCommit', + repository, + output: sourceArtifact, + branch: 'master', + }); + + const linterAction = new CodePipelineDockerfileLinterAction({ + actionName: 'Linter', + input: sourceArtifact, + }); + + const vulnScanAction = new CodePipelineAnchoreInlineScanAction({ + actionName: 'VulnScan', + input: sourceArtifact, + }); + + new Pipeline(this, 'Pipeline', { + pipelineName: 'container-audit-pipeline', + stages: [ + { + stageName: 'Source', + actions: [sourceAction], + }, + { + stageName: 'Audit', + actions: [linterAction, vulnScanAction], + }, + ], + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/LICENSE) + + + + +%package help +Summary: Development documents and examples for cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +Provides: python3-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action-doc +%description help +[](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action + +[](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[](https://github.com/hupe1980/cdkdx) +[](https://www.npmjs.com/package/@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action) +[](https://pypi.org/project/cloudcomponents.cdk-codepipeline-anchore-inline-scan-action/) + +> CodePipeline action to integrate [Anchore Engine](https://docs.anchore.com/current/) into your pipeline + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-codepipeline-anchore-inline-scan-action +``` + +Python: + +```bash +pip install cloudcomponents.cdk-codepipeline-anchore-inline-scan-action +``` + +## How to use + +```python +import { CodePipelineAnchoreInlineScanAction } from '@cloudcomponents/cdk-codepipeline-anchore-inline-scan-action'; +import { CodePipelineDockerfileLinterAction } from '@cloudcomponents/cdk-codepipeline-dockerfile-linter-action'; +import { Stack, StackProps } from 'aws-cdk-lib'; +import { Repository } from 'aws-cdk-lib/aws-codecommit'; +import { Pipeline, Artifact } from 'aws-cdk-lib/aws-codepipeline'; +import { CodeCommitSourceAction } from 'aws-cdk-lib/aws-codepipeline-actions'; +import { Construct } from 'constructs'; + +export class ContainerAuditStack extends Stack { + constructor(scope: Construct, id: string, props?: StackProps) { + super(scope, id, props); + + const repository = new Repository(this, 'Repository', { + repositoryName: 'container-audit-repository', + }); + + const sourceArtifact = new Artifact(); + + const sourceAction = new CodeCommitSourceAction({ + actionName: 'CodeCommit', + repository, + output: sourceArtifact, + branch: 'master', + }); + + const linterAction = new CodePipelineDockerfileLinterAction({ + actionName: 'Linter', + input: sourceArtifact, + }); + + const vulnScanAction = new CodePipelineAnchoreInlineScanAction({ + actionName: 'VulnScan', + input: sourceArtifact, + }); + + new Pipeline(this, 'Pipeline', { + pipelineName: 'container-audit-pipeline', + stages: [ + { + stageName: 'Source', + actions: [sourceAction], + }, + { + stageName: 'Audit', + actions: [linterAction, vulnScanAction], + }, + ], + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-codepipeline-anchore-inline-scan-action/LICENSE) + + + + +%prep +%autosetup -n cloudcomponents.cdk-codepipeline-anchore-inline-scan-action-2.1.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-cloudcomponents.cdk-codepipeline-anchore-inline-scan-action -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +e44967cdfcd9140d67730a3f33770c33 cloudcomponents.cdk-codepipeline-anchore-inline-scan-action-2.1.0.tar.gz |
