Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
94ad034
changes to derice minimum service account
rashmi43 Sep 9, 2024
7e6f00a
remove titles
rashmi43 Sep 9, 2024
ca72651
Merge branch 'operator-framework:main' into derive-serviceaccount
rashmi43 Sep 9, 2024
4a26d4a
update content to use unordered lists
rashmi43 Sep 10, 2024
94969ac
update huge example as a note
rashmi43 Sep 10, 2024
4850435
deploy example as yaml
rashmi43 Sep 10, 2024
e0be04b
change order
rashmi43 Sep 10, 2024
b7a9f3a
render sh correctly
rashmi43 Sep 11, 2024
23ef36e
add new line between roles
rashmi43 Sep 11, 2024
5da6a10
update service account
rashmi43 Sep 11, 2024
4b5a64a
address review comments
rashmi43 Sep 13, 2024
90cad68
remove bundle info.
rashmi43 Sep 14, 2024
5dbf1fb
review comments, link to docs
rashmi43 Sep 14, 2024
fa5d305
review comments
rashmi43 Sep 14, 2024
2c235f0
remove sa related info
rashmi43 Sep 14, 2024
66100b8
update permissions list
rashmi43 Sep 14, 2024
ffa43bc
permissions list update
rashmi43 Sep 17, 2024
acf09e7
provide an example
rashmi43 Sep 18, 2024
3d9f5d0
address review comments
rashmi43 Sep 19, 2024
46cb387
try collapsible block
rashmi43 Sep 19, 2024
762d205
try collapsible block
rashmi43 Sep 19, 2024
3dd5609
try collapsible block
rashmi43 Sep 19, 2024
9dda4d7
try collapsible block
rashmi43 Sep 19, 2024
fdc64fe
try collapsible block
rashmi43 Sep 19, 2024
ba8a0c1
final collapsible block
rashmi43 Sep 19, 2024
d9156c7
final collapsible block
rashmi43 Sep 20, 2024
b088706
address review comments
rashmi43 Sep 24, 2024
768782b
address review comments from per
rashmi43 Sep 24, 2024
46fc077
address review comments from per
rashmi43 Sep 25, 2024
abab05b
address review comments from per
rashmi43 Sep 25, 2024
d2dce74
address review comments from per, divide into 2 sections
rashmi43 Sep 25, 2024
a385723
address review comments from per, clean up
rashmi43 Sep 25, 2024
d63c27f
address review comments from per, add examples
rashmi43 Sep 26, 2024
79f1bf0
doc updates and refactoring
Sep 26, 2024
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
562 changes: 562 additions & 0 deletions docs/drafts/derive-serviceaccount.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
control-plane: controller-manager
name: argocd-operator-controller-manager-metrics-service
spec:
ports:
- name: https
port: 8443
targetPort: https
selector:
control-plane: controller-manager
status:
loadBalancer: {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: v1
data:
controller_manager_config.yaml: |
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1
kind: ControllerManagerConfig
health:
healthProbeBindAddress: :8081
metrics:
bindAddress: 127.0.0.1:8080
webhook:
port: 9443
leaderElection:
leaderElect: true
resourceName: b674928d.argoproj.io
kind: ConfigMap
metadata:
name: argocd-operator-manager-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: argocd-operator-metrics-reader
rules:
- nonResourceURLs:
- /metrics
verbs:
- get
Loading