Skip to content

Commit

Permalink
adding job for post-install and moving job to cronjob for nightly met…
Browse files Browse the repository at this point in the history
…rics
  • Loading branch information
Gregory-Pereira committed Nov 10, 2023
1 parent 966f820 commit 8386cc7
Show file tree
Hide file tree
Showing 9 changed files with 98 additions and 29 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: segment-backup-sa
namespace: sigstore-monitoring # throwing an issue because this doesnt exist yet
secrets:
- name: pull-secret
imagePullSecrets:
- name: pull-secret
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: {{ .Values.configs.segment_backup_job.name }}
namespace: {{ .Values.configs.segment_backup_job.namespace }}
spec:
schedule: "0 0 * * *"
concurrencyPolicy: "Replace"
startingDeadlineSeconds: 200
suspend: false
successfulJobsHistoryLimit: 7
failedJobsHistoryLimit: 3
jobTemplate:
spec:
template:
serviceAccountName: segment-backup-sa
metadata:
name: {{ .Values.configs.segment_backup_job.name }}
labels:
parent: "segment-backup-job"
spec:
containers:
- name: {{ .Values.configs.segment_backup_job.name }}
image: "{{ .Values.configs.cosign_deploy.image.registry }}/{{ .Values.configs.cosign_deploy.image.repository }}:{{ .Values.configs.cosign_deploy.image.version }}"
command: ["/bin/bash", "/opt/app-root/src/script.sh"]
restartPolicy: OnFailure
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: segment-backup-sa
namespace: sigstore-monitoring
namespace: trusted-artifact-signer
secrets:
- name: pull-secret
imagePullSecrets:
Expand Down
38 changes: 18 additions & 20 deletions charts/trusted-artifact-signer/templates/segment-backup-job.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
apiVersion: batch/v1
kind: Cronjob
kind: Job
metadata:
name: {{ .Values.configs.segment-backup-job.name }}
name: {{ .Values.configs.segment_backup_job.name }}
namespace: trusted-artifact-signer
spec:
schedule: "0 0 * * *"
concurrencyPolicy: "Replace"
startingDeadlineSeconds: 200
suspend: false
successfulJobsHistoryLimit: 7
failedJobsHistoryLimit: 3
jobTemplate:
parallelism: 1
completions: 1
activeDeadlineSeconds: 600
backoffLimit: 5
template:
serviceAccountName: segment-backup-sa
metadata:
name: {{ .Values.configs.segment_backup_job.name }}
labels:
parent: "segment-backup-job"
spec:
template:
serviceAccountName: segment-backup-sa
metadata:
labels:
parent: "segment-backup-job"
spec:
containers:
- name: {{ .Values.configs.segment-backup-job.name }}
image: "{{ .Values.configs.cosign_deploy.image.registry }}/{{ .Values.configs.cosign_deploy.image.repository }}:{{ .Values.configs.cosign_deploy.image.version }}"
command: ["/bin/bash", "/opt/app-root/src/script.sh"]
restartPolicy: OnFailure
containers:
- name: {{ .Values.configs.segment_backup_job.name }}
image: "{{ .Values.configs.cosign_deploy.image.registry }}/{{ .Values.configs.cosign_deploy.image.repository }}:{{ .Values.configs.cosign_deploy.image.version }}"
command: ["/bin/bash", "/opt/app-root/src/script.sh"]
restartPolicy: OnFailure
12 changes: 11 additions & 1 deletion charts/trusted-artifact-signer/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@
"properties": {
"configs": {
"properties": {
"segment-backup-job":{
"sigstore_monitoring": {
"properties": {
"namespace": {
"type": "string"
},
"namespace_create": {
"type": "boolean"
}
}
},
"segment_backup_job":{
"properties": {
"name": {
"type": "string"
Expand Down
15 changes: 12 additions & 3 deletions charts/trusted-artifact-signer/values.schema.tmpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@
"configs": {
"type": "object",
"properties": {
"segment-backup-job":{
"sigstore_monitoring": {
"properties": {
"namespace": {
"type": "string"
},
"namespace_create": {
"type": "boolean"
}
}
},
"segment_backup_job":{
"properties": {
"name": {
"type": "string"
Expand Down Expand Up @@ -301,8 +311,7 @@
},
"type": "object"
}
},
"type": "object"
}
},
"rbac": {
"properties": {
Expand Down
7 changes: 4 additions & 3 deletions charts/trusted-artifact-signer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ global:
appsSubdomain: ""

configs:
segment-backup-job:
sigstore_monitoring:
namespace: sigstore-monitoring
namespace_create: true
segment_backup_job:
name: segment-backup-job
namespace: sigstore-monitoring
image:
Expand Down Expand Up @@ -146,8 +149,6 @@ rbac:
# -- clusterrole to be added to sigstore component serviceaccounts.
clusterrole: system:openshift:scc:anyuid

https://github.com/securesign/sigstore-ocp/blob/dc536fd05432421742f1952cc0c8ff04f64bb97f/charts/trusted-artifact-signer/values.yaml#L139C3-L139C43

# github.com/sigstore/helm-charts/charts
scaffold:
ctlog:
Expand Down
2 changes: 1 addition & 1 deletion grafana/operator/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- namespace.yaml
# - namespace.yaml
- operator.yaml
16 changes: 16 additions & 0 deletions tas-easy-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,22 @@ oc -n rekor-system create secret generic rekor-private-key --from-file=private=.
#OPENSHIFT_APPS_SUBDOMAIN=$common_name envsubst < examples/values-sigstore-openshift.yaml | helm install --debug trusted-artifact-signer trusted-artifact-signer/trusted-artifact-signer -n trusted-artifact-signer --create-namespace --values -
OPENSHIFT_APPS_SUBDOMAIN=$common_name envsubst < examples/values-sigstore-openshift.yaml | helm upgrade -i trusted-artifact-signer --debug charts/trusted-artifact-signer -n trusted-artifact-signer --create-namespace --values -


# parse values for job creation to phone home
image_registry=$(cat charts/trusted-artifact-signer/values.yaml | yq .configs.segment_backup_job.image.registry)
image_repository=$(cat charts/trusted-artifact-signer/values.yaml | yq .configs.segment_backup_job.image.repository)
image_version=$(cat charts/trusted-artifact-signer/values.yaml | yq .configs.segment_backup_job.image.version)
image="${image_registry}/${image_repository}@${image_version}"
job_name=$(cat charts/trusted-artifact-signer/values.yaml | yq .configs.segment_backup_job.name)
job_namespace=job_name=$(cat charts/trusted-artifact-signer/values.yaml | yq .configs.segment_backup_job.namespace)

job_namespace_exits=$(oc projects | grep $job_namespace)
if [[ -z $job_namespace_exits ]]; then
oc -n trusted-artifact-signer run $job_name --image=$image
else
oc -n $job_namespace run $job_name --image=$image
fi

# Create the script to initialize the environment variables for the service endpoints
generate_env_script

0 comments on commit 8386cc7

Please sign in to comment.