-
Notifications
You must be signed in to change notification settings - Fork 9
caib: add progress bar #125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,4 +29,6 @@ resources: | |
| - image_editor_role.yaml | ||
| - image_viewer_role.yaml | ||
| - pipeline_registry_rolebinding.yaml | ||
| - pipeline_pod_role.yaml | ||
| - pipeline_pod_rolebinding.yaml | ||
|
Comment on lines
+32
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Locate and inspect the RBAC files mentioned in the review
echo "=== Searching for pipeline_pod_role.yaml ==="
fd -e yaml 'pipeline_pod_role' -exec cat {} \;
echo ""
echo "=== Searching for pipeline_pod_rolebinding.yaml ==="
fd -e yaml 'pipeline_pod_rolebinding' -exec cat {} \;Repository: centos-automotive-suite/automotive-dev-operator Length of output: 581 🏁 Script executed: #!/bin/bash
# Locate and inspect the RBAC files with corrected syntax
echo "=== Searching for pipeline_pod_role.yaml ==="
find . -name "pipeline_pod_role.yaml" -type f | head -20
echo ""
echo "=== Searching for pipeline_pod_rolebinding.yaml ==="
find . -name "pipeline_pod_rolebinding.yaml" -type f | head -20
echo ""
echo "=== Listing files in config/rbac directory ==="
ls -la config/rbac/ 2>/dev/null || echo "Directory not found"Repository: centos-automotive-suite/automotive-dev-operator Length of output: 1764 🏁 Script executed: #!/bin/bash
# Read the actual content of both RBAC files
echo "=== Content of pipeline_pod_role.yaml ==="
cat config/rbac/pipeline_pod_role.yaml
echo ""
echo "=== Content of pipeline_pod_rolebinding.yaml ==="
cat config/rbac/pipeline_pod_rolebinding.yamlRepository: centos-automotive-suite/automotive-dev-operator Length of output: 636 Use a namespace-scoped The Change 🤖 Prompt for AI Agents |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| apiVersion: rbac.authorization.k8s.io/v1 | ||
| kind: Role | ||
| metadata: | ||
| name: pipeline-pod-annotator | ||
| rules: | ||
| - apiGroups: [""] | ||
| resources: ["pods"] | ||
| verbs: ["patch"] | ||
|
bennyz marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| apiVersion: rbac.authorization.k8s.io/v1 | ||
| kind: RoleBinding | ||
| metadata: | ||
| name: pipeline-pod-annotator | ||
| namespace: system | ||
| roleRef: | ||
| apiGroup: rbac.authorization.k8s.io | ||
| kind: Role | ||
| name: pipeline-pod-annotator | ||
| subjects: | ||
| - kind: ServiceAccount | ||
| name: pipeline | ||
| namespace: system |
Uh oh!
There was an error while loading. Please reload this page.