mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
11 lines
293 B
Python
11 lines
293 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import base
|
||
|
|
||
|
def generate_key_pair():
|
||
|
command = ["cosign", "generate-key-pair"]
|
||
|
base.run_command(command)
|
||
|
|
||
|
def sign_artifact(artifact):
|
||
|
command = ["cosign", "sign", "--allow-insecure-registry", "--key", "cosign.key", artifact]
|
||
|
base.run_command(command)
|