mirror of
https://github.com/goharbor/harbor
synced 2025-04-20 19:18:02 +00: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)
|