Skip to content
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

feat: Streamline and rename chart #7

Merged
merged 1 commit into from
May 2, 2024
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
6 changes: 6 additions & 0 deletions charts/k8s-agents-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v2
name: k8s-agents-operator
description: A Helm chart for the Kubernetes Agents Operator
type: application
version: '0.1.0'
appVersion: '0.1.0'
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# IMPORTANT: Specify your New Relic Ingest key here.
# -- Ingest license key to use
# licenseKey:

controllerManager:
replicas: 1

kubeRbacProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
Expand All @@ -15,7 +16,6 @@ controllerManager:
cpu: 5m
memory: 64Mi

## Provide New Relic Agent Operator manager container image and resources.
manager:
image:
repository: ghcr.io/newrelic-experimental/newrelic-agent-operator/newrelic-agent-operator
Expand All @@ -24,38 +24,38 @@ controllerManager:
requests:
cpu: 100m
memory: 64Mi
# -- Create the manager ServiceAccount
serviceAccount:
create: true

## Enable leader election mechanism for protecting against split brain if multiple operator pods/replicas are started.
## See more at https://docs.openshift.com/container-platform/4.10/operators/operator_sdk/osdk-leader-election.html
# -- Enable leader election mechanism for protecting against split brain if multiple operator pods/replicas are started
# -- See more at https://docs.openshift.com/container-platform/4.10/operators/operator_sdk/osdk-leader-election.html
leaderElection:
enabled: true

kubernetesClusterDomain: cluster.local

metricsService:
ports:
- name: https
port: 8443
protocol: TCP
targetPort: https
type: ClusterIP

webhookService:
ports:
- port: 443
protocol: TCP
targetPort: 9443
type: ClusterIP

## SecurityContext holds pod-level security attributes and common container settings.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
# -- SecurityContext holds pod-level security attributes and common container settings
# -- ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
securityContext:
runAsGroup: 65532
runAsNonRoot: true
runAsUser: 65532
fsGroup: 65532

## Admission webhooks make sure only requests with correctly formatted rules will get into the Operator.
# -- Admission webhooks make sure only requests with correctly formatted rules will get into the Operator
admissionWebhooks:
create: true
21 changes: 0 additions & 21 deletions charts/newrelic-agent-operator/Chart.yaml

This file was deleted.

Loading