Skip to content

Commit

Permalink
fix: missing fields in the api
Browse files Browse the repository at this point in the history
Signed-off-by: iam-veeramalla <[email protected]>
  • Loading branch information
iam-veeramalla committed Mar 8, 2024
1 parent a8e5023 commit 4669ee2
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 14 deletions.
11 changes: 9 additions & 2 deletions bundle/manifests/gitops-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ metadata:
"apiVersion": "argoproj.io/v1beta1",
"kind": "ArgoCD",
"metadata": {
"name": "argocd-sample"
"name": "argocd"
},
"spec": {
"controller": {
Expand Down Expand Up @@ -89,6 +89,11 @@ metadata:
}
}
},
"rbac": {
"defaultPolicy": "",
"policy": "g, system:cluster-admins, role:admin\n",
"scopes": "[groups]"
},
"redis": {
"resources": {
"limits": {
Expand All @@ -105,14 +110,15 @@ metadata:
"resources": {
"limits": {
"cpu": "1000m",
"memory": "512Mi"
"memory": "1024Mi"
},
"requests": {
"cpu": "250m",
"memory": "256Mi"
}
}
},
"resourceExclusions": "- apiGroups:\n - tekton.dev\n clusters:\n - '*'\n kinds:\n - TaskRun\n - PipelineRun \n",
"server": {
"resources": {
"limits": {
Expand All @@ -130,6 +136,7 @@ metadata:
},
"sso": {
"dex": {
"openShiftOAuth": true,
"resources": {
"limits": {
"cpu": "500m",
Expand Down
38 changes: 26 additions & 12 deletions config/samples/argoproj.io_v1beta1_argocd.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: argoproj.io/v1beta1
kind: ArgoCD
metadata:
name: argocd-sample
name: argocd
spec:
server:
resources:
Expand All @@ -17,10 +17,21 @@ spec:
resources:
limits:
cpu: 1000m
memory: 512Mi
memory: 1024Mi
requests:
cpu: 250m
memory: 256Mi
sso:
provider: dex
dex:
openShiftOAuth: true
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 250m
memory: 128Mi
ha:
enabled: false
resources:
Expand All @@ -30,6 +41,11 @@ spec:
requests:
cpu: 250m
memory: 128Mi
rbac:
defaultPolicy: ''
policy: |
g, system:cluster-admins, role:admin
scopes: '[groups]'
redis:
resources:
limits:
Expand All @@ -38,16 +54,14 @@ spec:
requests:
cpu: 250m
memory: 128Mi
sso:
provider: dex
dex:
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 250m
memory: 128Mi
resourceExclusions: |
- apiGroups:
- tekton.dev
clusters:
- '*'
kinds:
- TaskRun
- PipelineRun
controller:
resources:
limits:
Expand Down

0 comments on commit 4669ee2

Please sign in to comment.