Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kubernetes/cray-drydock/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
---
apiVersion: v2
name: cray-drydock
version: 2.20.2
version: 2.20.3
description: Foundational resources and baseline building-blocks for a Cray Kubernetes
cluster
keywords:
Expand Down
17 changes: 9 additions & 8 deletions kubernetes/cray-drydock/templates/rbac.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{/*
MIT License

(C) Copyright 2022 Hewlett Packard Enterprise Development LP
(C) Copyright 2022, 2025 Hewlett Packard Enterprise Development LP

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -47,6 +47,12 @@ metadata:
namespace: services
name: jobs-watcher
---
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: argo
name: jobs-watcher
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
Expand All @@ -55,7 +61,7 @@ rules:
- apiGroups: ["", "batch"]
resources: ["jobs"]
verbs: ["get", "list"]

{{- if .Capabilities.APIVersions.Has "policy/v1beta1/PodSecurityPolicy" }}
---
# RoleBinding for PSP in loftsman namespace
kind: RoleBinding
Expand Down Expand Up @@ -154,12 +160,6 @@ subjects:
kind: Group
name: system:serviceaccounts:argo
---
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: argo
name: jobs-watcher
---
# RoleBinding for PSP in cert-manager namespace
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
Expand All @@ -174,3 +174,4 @@ subjects:
- apiGroup: rbac.authorization.k8s.io
kind: Group
name: system:serviceaccounts:cert-manager
{{- end }}
Loading