aquasecurity / trivy-operator

Kubernetes-native security toolkit
https://aquasecurity.github.io/trivy-operator/latest
Apache License 2.0
1.18k stars 199 forks source link

trivy operator 0.18.3 : crashing , config not working , metrics endpoint down #1818

Closed prabhapa closed 5 months ago

prabhapa commented 7 months ago

want to install and run trivy operator on my EKS cluster on fargate. I can see the operator constantly crashing due to probe failures. Also some configuration are not working as expected. And metrics end point is down. below is segregation of issues: Part 1: crash issue 1)installation:

helm install trivy-operator aqua/trivy-operator \
  --namespace trivy-system \
  --version 0.18.3 \
  --values trivy-values.yaml    

trivy:tag: 0.48.3 / 0.48.2

2) adding some more permissions on SA to access ECR repo. 3) restarting trivy-operator pod to affect the permisison changes. 4) observing pod crash (crash debug log attached) 5) followed by crashloopback (logs attached) 6) pod describe logs to see events (attached)

**Part 2: configuration does not work as expected.**

1) found out none of the below configuration are working as expected: (full values file attached) operator: scanJobsConcurrentLimit: 2 scanNodeCollectorLimit: 1 serviceAccount: create: true annotations: {"eks.amazonaws.com/role-arn: arn:aws:iam::xxxxxxx:role/cluster-dev-node"} nodeCollector: excludeNodes: eks.amazonaws.com/compute-type=fargate

Part 3: metrics end point is never up when i am curling metrics end point i am getting "500 server error."

please help addressing above issues.

Environment:

EKS cluster with fargate nodes and some autoscaling ec2 nodes.

attachments: pod-describe.txt pod-logs-crashloop.txt podlogs.txt trivy-values.txt

AnaisUrlichs commented 7 months ago

Hi there, could you please paste the trivy-values.yaml manifest? Could you try again with the latest Trivy version?

prabhapa commented 7 months ago

Hi @AnaisUrlichs , I tried with latest version got similar issues. trivy-values.txt is attached already. Again pasting the values here:


global: image: registry: "" managedBy: Helm targetNamespaces: "" excludeNamespaces: "" targetWorkloads: "pod,replicaset,replicationcontroller,statefulset,daemonset,cronjob,job" nameOverride: "" fullnameOverride: "" operator: namespace: "" replicas: 1 revisionHistoryLimit: ~ podLabels: {} leaderElectionId: "trivyoperator-lock" logDevMode: true scanJobTTL: "" scanJobTimeout: 5m scanJobsConcurrentLimit: 2 scanNodeCollectorLimit: 1 scanJobsRetryDelay: 30s vulnerabilityScannerEnabled: false sbomGenerationEnabled: false clusterSbomCacheEnabled: true scannerReportTTL: "24h" cacheReportTTL: "120h" configAuditScannerEnabled: true rbacAssessmentScannerEnabled: true infraAssessmentScannerEnabled: true clusterComplianceEnabled: true batchDeleteLimit: 10 vulnerabilityScannerScanOnlyCurrentRevisions: true configAuditScannerScanOnlyCurrentRevisions: true batchDeleteDelay: 10s accessGlobalSecretsAndServiceAccount: true builtInTrivyServer: false controllerCacheSyncTimeout: "5m" trivyServerHealthCheckCacheExpiration: 10h metricsFindingsEnabled: true metricsVulnIdEnabled: false exposedSecretScannerEnabled: true metricsExposedSecretInfo: true metricsConfigAuditInfo: true metricsRbacAssessmentInfo: true metricsInfraAssessmentInfo: true metricsImageInfo: true metricsClusterComplianceInfo: true webhookBroadcastURL: "" webhookBroadcastTimeout: 30s webhookSendDeletedReports: false privateRegistryScanSecretsNames: {} mergeRbacFindingWithConfigAudit: false image: registry: "ghcr.io" repository: "aquasecurity/trivy-operator" tag: "0.18.3" pullPolicy: IfNotPresent pullSecrets: [] service: headless: true metricsPort: 80 annotations: {} serviceMonitor: enabled: true namespace: "cloud" interval: ~ annotations: {} labels: {} honorLabels: true endpointAdditionalProperties: {} trivyOperator: vulnerabilityReportsPlugin: "Trivy" configAuditReportsPlugin: "Trivy" scanJobCompressLogs: true scanJobTolerations: [] scanJobNodeSelector: {} scanJobAutomountServiceAccountToken: true scanJobAnnotations: "" scanJobPodTemplateLabels: "" skipInitContainers: false scanJobPodTemplatePodSecurityContext: {} scanJobPodTemplateContainerSecurityContext: allowPrivilegeEscalation: false capabilities: drop:

chen-keinan commented 7 months ago

@prabhapa can you please share k8s / operator logs on crash.

prabhapa commented 7 months ago

Hi @chen-keinan , those are attached with issue : https://github.com/aquasecurity/trivy-operator/files/14125687/pod-describe.txt https://github.com/aquasecurity/trivy-operator/files/14125691/pod-logs-crashloop.txt https://github.com/aquasecurity/trivy-operator/files/14125692/podlogs.txt

AnaisUrlichs commented 7 months ago

@prabhapa is this the trivy-values.yaml file you are passing into the Trivy Operator? I meant more like this one: https://github.com/Cloud-Native-Security/monitor-security/blob/main/observability-conf/trivy-values.yaml

You don't need to pass in entire values.yaml file with the default values, just the values that you changed. This way, we can see the changes that you applied.

AnaisUrlichs commented 7 months ago

@prabhapa it would be easier if you could paste the logs directly as comments vs providing the files

prabhapa commented 7 months ago

Hi @chen-keinan , please see below controls from full values that i modified or intended to modify later.

global:
  image:
    registry: ""
managedBy: Helm
targetNamespaces: ""
excludeNamespaces: ""
targetWorkloads: "pod,replicaset,replicationcontroller,statefulset,daemonset,cronjob,job"
nameOverride: ""
fullnameOverride: ""
operator:
  replicas: 1
  scanJobsConcurrentLimit: 2
  scanNodeCollectorLimit: 1
  vulnerabilityScannerEnabled: false
  sbomGenerationEnabled: false
  clusterSbomCacheEnabled: true
  configAuditScannerEnabled: true
  rbacAssessmentScannerEnabled: true
  infraAssessmentScannerEnabled: true
  clusterComplianceEnabled: true
  vulnerabilityScannerScanOnlyCurrentRevisions: true
  configAuditScannerScanOnlyCurrentRevisions: true
  accessGlobalSecretsAndServiceAccount: true
  builtInTrivyServer: false
  metricsFindingsEnabled: true
  metricsVulnIdEnabled: false
  exposedSecretScannerEnabled: true
  metricsExposedSecretInfo: true
  metricsConfigAuditInfo: true
  metricsRbacAssessmentInfo: true
  metricsInfraAssessmentInfo: true
  metricsImageInfo: true
  metricsClusterComplianceInfo: true
image:
  registry: "ghcr.io"
  repository: "aquasecurity/trivy-operator"
  tag: "0.18.3"
  pullPolicy: IfNotPresent
  pullSecrets: []
serviceMonitor:
  enabled: true
  namespace: "cloud"
  interval: ~
  annotations: {}
  labels: {}
  honorLabels: true
  endpointAdditionalProperties: {}
trivyOperator:
  scanJobPodTemplateContainerSecurityContext:
    allowPrivilegeEscalation: false
    capabilities:
      drop:
        - ALL
    privileged: false
    readOnlyRootFilesystem: true
    runAsUser: 0
trivy:
  createConfig: true
  image:
    registry: ghcr.io
    repository: aquasecurity/trivy
    tag: 0.48.3
    imagePullSecret: ~
    pullPolicy: IfNotPresent
  mode: Standalone
  severity: UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL
  slow: true
  ignoreUnfixed: true
compliance:
  failEntriesLimit: 10
  reportType: summary
  cron: 0 */6 * * *
rbac:
  create: true
serviceAccount:
  create: true
  annotations: {"eks.amazonaws.com/role-arn: arn:aws:iam::xxx:role/cluster-dev-node"}
  name: ""
  excludeNodes: eks.amazonaws.com/compute-type=fargate

Hello @AnaisUrlichs , its very lengthy debug log so i attached as file. Let me paste below: 2024/02/01 12:17:17 maxprocs: Leaving GOMAXPROCS=2: CPU quota undefined 2024-02-01T12:17:23Z INFO main Starting operator {"buildInfo": {"Version":"0.18.3","Commit":"9815acd81d1988935909d92d85fc5e58e800de3a","Date":"2024-01-29T15:06:23Z","Executable":""}} 2024-02-01T12:17:23Z INFO operator Resolved install mode {"install mode": "AllNamespaces", "operator namespace": "trivy-system", "target namespaces": [], "exclude namespaces": "", "target workloads": ["pod", "replicaset", "replicationcontroller", "statefulset", "daemonset", "cronjob", "job"]} 2024-02-01T12:17:23Z INFO operator Watching all namespaces 2024-02-01T12:17:23Z INFO operator Enabling built-in configuration audit scanner 2024-02-01T12:17:23Z INFO operator Starting controllers manager 2024-02-01T12:17:23Z INFO controller-runtime.metrics Starting metrics server 2024-02-01T12:17:23Z INFO controller-runtime.metrics Serving metrics server {"bindAddress": ":8080", "secure": false} 2024-02-01T12:17:23Z INFO starting server {"kind": "health probe", "addr": "[::]:9090"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1.Pod"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1.Job"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1.CronJob"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "rbacassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "RbacAssessmentReport", "source": "kind source: v1alpha1.RbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "rbacassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "RbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1.StatefulSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1.ReplicationController"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1.Job"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1.ReplicaSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1.DaemonSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1alpha1.VulnerabilityReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1alpha1.SbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configauditreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ConfigAuditReport", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configauditreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "infraassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "InfraAssessmentReport", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "infraassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "exposedsecretreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ExposedSecretReport", "source": "kind source: v1alpha1.ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "exposedsecretreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ExposedSecretReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1.Pod"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clustersbomreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterSbomReport", "source": "kind source: v1alpha1.ClusterSbomReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "clustersbomreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterSbomReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1.ReplicationController"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1.ReplicaSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1.DaemonSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1.StatefulSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1.Job"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1.CronJob"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "service", "controllerGroup": "", "controllerKind": "Service", "source": "kind source: v1.Service"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "service", "controllerGroup": "", "controllerKind": "Service", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "service", "controllerGroup": "", "controllerKind": "Service"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "ingress", "controllerGroup": "networking.k8s.io", "controllerKind": "Ingress", "source": "kind source: v1.Ingress"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "ingress", "controllerGroup": "networking.k8s.io", "controllerKind": "Ingress", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "ingress", "controllerGroup": "networking.k8s.io", "controllerKind": "Ingress", "source": "kind source: v1alpha1.InfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "ingress", "controllerGroup": "networking.k8s.io", "controllerKind": "Ingress"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "role", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "Role", "source": "kind source: v1.Role"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "role", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "Role", "source": "kind source: v1alpha1.RbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "role", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "Role"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "networkpolicy", "controllerGroup": "networking.k8s.io", "controllerKind": "NetworkPolicy", "source": "kind source: v1.NetworkPolicy"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "networkpolicy", "controllerGroup": "networking.k8s.io", "controllerKind": "NetworkPolicy", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "networkpolicy", "controllerGroup": "networking.k8s.io", "controllerKind": "NetworkPolicy"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "rolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "RoleBinding", "source": "kind source: v1.RoleBinding"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "rolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "RoleBinding", "source": "kind source: v1alpha1.RbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "rolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "RoleBinding"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "limitrange", "controllerGroup": "", "controllerKind": "LimitRange", "source": "kind source: v1.LimitRange"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "limitrange", "controllerGroup": "", "controllerKind": "LimitRange", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "limitrange", "controllerGroup": "", "controllerKind": "LimitRange"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "resourcequota", "controllerGroup": "", "controllerKind": "ResourceQuota", "source": "kind source: v1.ResourceQuota"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "resourcequota", "controllerGroup": "", "controllerKind": "ResourceQuota", "source": "kind source: v1alpha1.ConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "resourcequota", "controllerGroup": "", "controllerKind": "ResourceQuota"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clusterrolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRoleBinding", "source": "kind source: v1.ClusterRoleBinding"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clusterrolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRoleBinding", "source": "kind source: v1alpha1.ClusterRbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "clusterrolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRoleBinding"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clusterrole", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRole", "source": "kind source: v1.ClusterRole"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clusterrole", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRole", "source": "kind source: v1alpha1.ClusterRbacAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "clusterrole", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRole"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "customresourcedefinition", "controllerGroup": "apiextensions.k8s.io", "controllerKind": "CustomResourceDefinition", "source": "kind source: v1.CustomResourceDefinition"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "customresourcedefinition", "controllerGroup": "apiextensions.k8s.io", "controllerKind": "CustomResourceDefinition", "source": "kind source: v1alpha1.ClusterConfigAuditReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "customresourcedefinition", "controllerGroup": "apiextensions.k8s.io", "controllerKind": "CustomResourceDefinition"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "source": "kind source: v1.ConfigMap"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "source": "kind source: v1.Job"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "node", "controllerGroup": "", "controllerKind": "Node", "source": "kind source: v1.Node"} 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "node", "controllerGroup": "", "controllerKind": "Node", "source": "kind source: v1alpha1.ClusterInfraAssessmentReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "node", "controllerGroup": "", "controllerKind": "Node"} 2024-02-01T12:17:23Z INFO metrics Registering resources metrics collector 2024-02-01T12:17:23Z INFO Starting EventSource {"controller": "clustercompliancereport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterComplianceReport", "source": "kind source: *v1alpha1.ClusterComplianceReport"} 2024-02-01T12:17:23Z INFO Starting Controller {"controller": "clustercompliancereport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterComplianceReport"} 2024-02-01T12:17:23Z INFO Starting workers {"controller": "rbacassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "RbacAssessmentReport", "worker count": 1} 2024-02-01T12:17:23Z INFO Starting workers {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "worker count": 1} 2024-02-01T12:17:24Z DEBUG reconciler.scan job Deleting failed scan job {"job": "trivy-system/scan-vulnerabilityreport-985fbfd78"} 2024-02-01T12:17:24Z INFO Starting workers {"controller": "configauditreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ConfigAuditReport", "worker count": 1} 2024-02-01T12:17:24Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"cronjob-appian-core-db-cleanup","namespace":"cloud"}, "durationToTTLExpiration": "21h15m58.564793785s"} 2024-02-01T12:17:24Z INFO Starting workers {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "worker count": 1} 2024-02-01T12:17:24Z DEBUG reconciler.scan job Deleting failed scan job {"job": "trivy-system/scan-vulnerabilityreport-589d466bd7"} 2024-02-01T12:17:24Z DEBUG reconciler.scan job Ignoring cached job that must have been deleted {"job": {"name":"scan-vulnerabilityreport-985fbfd78","namespace":"trivy-system"}} 2024-02-01T12:17:24Z DEBUG reconciler.scan job Ignoring cached job that must have been deleted {"job": {"name":"scan-vulnerabilityreport-589d466bd7","namespace":"trivy-system"}} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "clustercompliancereport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterComplianceReport", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "clustersbomreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ClusterSbomReport", "worker count": 1} 2024-02-01T12:17:25Z DEBUG reconciler.clustercompliancereport RequeueAfter {"compliance report": {"name":"cis"}, "durationToNextGeneration": "5h42m34.16916184s"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z DEBUG reconciler.clustercompliancereport RequeueAfter {"compliance report": {"name":"nsa"}, "durationToNextGeneration": "5h42m34.168381516s"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "clusterrole", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRole", "worker count": 1} 2024-02-01T12:17:25Z DEBUG reconciler.clustercompliancereport RequeueAfter {"compliance report": {"name":"pss-baseline"}, "durationToNextGeneration": "5h42m34.167916349s"} 2024-02-01T12:17:25Z DEBUG reconciler.clustercompliancereport RequeueAfter {"compliance report": {"name":"pss-restricted"}, "durationToNextGeneration": "5h42m34.167744433s"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "node", "controllerGroup": "", "controllerKind": "Node", "worker count": 1} 2024-02-01T12:17:25Z DEBUG node-reconciler Getting node from cache {"node": {"name":"ip-10-149-13-246.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether cluster Infra assessments report exists {"node": {"name":"ip-10-149-13-246.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether Node info collector job have been scheduled {"node": {"name":"ip-10-149-13-246.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking node collector jobs limit {"node": {"name":"ip-10-149-13-246.eu-west-1.compute.internal"}, "count": 2, "limit": 2} 2024-02-01T12:17:25Z DEBUG node-reconciler Pushing back node collector job {"node": {"name":"ip-10-149-13-246.eu-west-1.compute.internal"}, "count": 2, "retryAfter": "30s"} 2024-02-01T12:17:25Z DEBUG node-reconciler Getting node from cache {"node": {"name":"ip-10-149-11-38.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether cluster Infra assessments report exists {"node": {"name":"ip-10-149-11-38.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether Node info collector job have been scheduled {"node": {"name":"ip-10-149-11-38.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking node collector jobs limit {"node": {"name":"ip-10-149-11-38.eu-west-1.compute.internal"}, "count": 2, "limit": 2} 2024-02-01T12:17:25Z DEBUG node-reconciler Pushing back node collector job {"node": {"name":"ip-10-149-11-38.eu-west-1.compute.internal"}, "count": 2, "retryAfter": "30s"} 2024-02-01T12:17:25Z DEBUG node-reconciler Getting node from cache {"node": {"name":"ip-10-149-13-140.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether cluster Infra assessments report exists {"node": {"name":"ip-10-149-13-140.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether Node info collector job have been scheduled {"node": {"name":"ip-10-149-13-140.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking node collector jobs limit {"node": {"name":"ip-10-149-13-140.eu-west-1.compute.internal"}, "count": 2, "limit": 2} 2024-02-01T12:17:25Z DEBUG node-reconciler Pushing back node collector job {"node": {"name":"ip-10-149-13-140.eu-west-1.compute.internal"}, "count": 2, "retryAfter": "30s"} 2024-02-01T12:17:25Z DEBUG node-reconciler Getting node from cache {"node": {"name":"ip-10-149-9-236.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether cluster Infra assessments report exists {"node": {"name":"ip-10-149-9-236.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether Node info collector job have been scheduled {"node": {"name":"ip-10-149-9-236.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking node collector jobs limit {"node": {"name":"ip-10-149-9-236.eu-west-1.compute.internal"}, "count": 2, "limit": 2} 2024-02-01T12:17:25Z DEBUG node-reconciler Pushing back node collector job {"node": {"name":"ip-10-149-9-236.eu-west-1.compute.internal"}, "count": 2, "retryAfter": "30s"} 2024-02-01T12:17:25Z DEBUG node-reconciler Getting node from cache {"node": {"name":"ip-10-149-9-226.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether cluster Infra assessments report exists {"node": {"name":"ip-10-149-9-226.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking whether Node info collector job have been scheduled {"node": {"name":"ip-10-149-9-226.eu-west-1.compute.internal"}} 2024-02-01T12:17:25Z DEBUG node-reconciler Checking node collector jobs limit {"node": {"name":"ip-10-149-9-226.eu-west-1.compute.internal"}, "count": 2, "limit": 2} 2024-02-01T12:17:25Z DEBUG node-reconciler Pushing back node collector job {"node": {"name":"ip-10-149-9-226.eu-west-1.compute.internal"}, "count": 2, "retryAfter": "30s"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "rolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "RoleBinding", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "role", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "Role", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "worker count": 1} 2024-02-01T12:17:25Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "ClusterRole", "name": {"name":"system:controller:daemon-set-controller"}} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "ingress", "controllerGroup": "networking.k8s.io", "controllerKind": "Ingress", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "limitrange", "controllerGroup": "", "controllerKind": "LimitRange", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "worker count": 1} 2024-02-01T12:17:25Z DEBUG resourcecontroller Ignoring managed job {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28445580","namespace":"cloud"}, "controllerKind": "CronJob", "controllerName": "appian-core-db-cleanup"} 2024-02-01T12:17:25Z DEBUG resourcecontroller Ignoring managed job {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28444140","namespace":"cloud"}, "controllerKind": "CronJob", "controllerName": "appian-core-db-cleanup"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "worker count": 1} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "CronJob", "name": {"name":"appian-core-db-cleanup","namespace":"cloud"}, "workload": "appian-core-db-cleanup"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "CronJob", "name": {"name":"appian-core-db-cleanup","namespace":"cloud"}, "workload": "appian-core-db-cleanup"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "worker count": 1} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-node-5pgft","namespace":"appian-site"}, "workload": "efs-csi-node-5pgft"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-5pgft","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-proxy-vrt6f","namespace":"kube-system"}, "workload": "kube-proxy-vrt6f"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-vrt6f","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-file-vault-7db998bf47-gqjdm","namespace":"ms"}, "workload": "san-mono-file-vault-7db998bf47-gqjdm"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-file-vault-7db998bf47-gqjdm","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-file-vault-7db998bf47"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-zookeeper-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-zookeeper-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-zookeeper-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-zookeeper"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-node-zgzl8","namespace":"kube-system"}, "workload": "ebs-csi-node-zgzl8"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-zgzl8","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-node-4nxj9","namespace":"kube-system"}, "workload": "aws-node-4nxj9"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-4nxj9","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-node-gkl4z","namespace":"kube-system"}, "workload": "aws-node-gkl4z"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-gkl4z","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-mock-hooyu-service-74b47495c5-ffhrd","namespace":"ms"}, "workload": "san-mono-mock-hooyu-service-74b47495c5-ffhrd"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-hooyu-service-74b47495c5-ffhrd","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-hooyu-service-74b47495c5"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-docusign-8fbdcf59f-hxpvz","namespace":"ms"}, "workload": "san-mono-docusign-8fbdcf59f-hxpvz"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-docusign-8fbdcf59f-hxpvz","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-docusign-8fbdcf59f"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-m29zz","namespace":"ingress"}, "workload": "ingress-nginx-controller-d899bbd5-m29zz"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-m29zz","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-node-rwbrw","namespace":"kube-system"}, "workload": "aws-node-rwbrw"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-rwbrw","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-letters-honcho-7464597c78-pgqz5","namespace":"ms"}, "workload": "san-mono-letters-honcho-7464597c78-pgqz5"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-letters-honcho-7464597c78-pgqz5","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-letters-honcho-7464597c78"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-web-view-bb9b68497-cj4n8","namespace":"cloud"}, "workload": "kube-web-view-bb9b68497-cj4n8"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-web-view-bb9b68497-cj4n8","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "kube-web-view-bb9b68497"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-node-njwkt","namespace":"kube-system"}, "workload": "ebs-csi-node-njwkt"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-njwkt","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-simple-email-5cf6596865-95glq","namespace":"ms"}, "workload": "san-mono-simple-email-5cf6596865-95glq"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-simple-email-5cf6596865-95glq","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-simple-email-5cf6596865"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-xccs7","namespace":"appian-site"}, "workload": "efs-csi-controller-755df4dfc-xccs7"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-xccs7","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "efs-csi-controller-755df4dfc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-groups-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-groups-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-groups-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-groups"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-notifications-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-notifications"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"k8s-event-logger-8f8489b75-567hc","namespace":"cloud"}, "workload": "k8s-event-logger-8f8489b75-567hc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"k8s-event-logger-8f8489b75-567hc","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "k8s-event-logger-8f8489b75"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"pgadmin-pgadmin4-7975b5b7f4-bh9gr","namespace":"cloud"}, "workload": "pgadmin-pgadmin4-7975b5b7f4-bh9gr"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"pgadmin-pgadmin4-7975b5b7f4-bh9gr","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "pgadmin-pgadmin4-7975b5b7f4"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-mi-report-email-6dddc9c89f-qmkc9","namespace":"ms"}, "workload": "san-mono-mi-report-email-6dddc9c89f-qmkc9"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mi-report-email-6dddc9c89f-qmkc9","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mi-report-email-6dddc9c89f"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-outbound-letters-doc-vault-68ccd8d488-tpwf6","namespace":"ms"}, "workload": "san-mono-outbound-letters-doc-vault-68ccd8d488-tpwf6"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-outbound-letters-doc-vault-68ccd8d488-tpwf6","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-outbound-letters-doc-vault-68ccd8d488"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"appian-operator-webhooks-6d5b59dcc6-qwd5l","namespace":"appian-operator"}, "workload": "appian-operator-webhooks-6d5b59dcc6-qwd5l"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-operator-webhooks-6d5b59dcc6-qwd5l","namespace":"appian-operator"}, "controllerKind": "ReplicaSet", "controllerName": "appian-operator-webhooks-6d5b59dcc6"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-data-server-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-data-server-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-data-server-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-data-server"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"service-s3browser-5dcc6495f9-475z5","namespace":"cloud"}, "workload": "service-s3browser-5dcc6495f9-475z5"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"service-s3browser-5dcc6495f9-475z5","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "service-s3browser-5dcc6495f9"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-hooyu-request-service-5bc4c7bb6b-h9wmc","namespace":"ms"}, "workload": "san-mono-hooyu-request-service-5bc4c7bb6b-h9wmc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-hooyu-request-service-5bc4c7bb6b-h9wmc","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-hooyu-request-service-5bc4c7bb6b"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-wpzzb","namespace":"ingress"}, "workload": "aws-lb-controller-aws-load-balancer-controller-598485f648-wpzzb"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-wpzzb","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"autoscaler-aws-cluster-autoscaler-7d986d6b67-twjfn","namespace":"kube-system"}, "workload": "autoscaler-aws-cluster-autoscaler-7d986d6b67-twjfn"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"autoscaler-aws-cluster-autoscaler-7d986d6b67-twjfn","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "autoscaler-aws-cluster-autoscaler-7d986d6b67"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-proxy-bgjrv","namespace":"kube-system"}, "workload": "kube-proxy-bgjrv"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-bgjrv","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"prometheus-adapter-9c44d9d96-gkf4d","namespace":"cloud"}, "workload": "prometheus-adapter-9c44d9d96-gkf4d"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-adapter-9c44d9d96-gkf4d","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-adapter-9c44d9d96"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-policy-polisher-644fc4c75d-kg5c4","namespace":"ms"}, "workload": "san-mono-policy-polisher-644fc4c75d-kg5c4"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-polisher-644fc4c75d-kg5c4","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-polisher-644fc4c75d"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics02-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-analytics02-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics02-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics02"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-channels-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-channels-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-channels-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-channels"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-9jtk6","namespace":"kube-system"}, "workload": "ebs-csi-controller-77fbf98c76-9jtk6"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-9jtk6","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "ebs-csi-controller-77fbf98c76"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-document-attachment-portal-5cdf4969dc-6vm6f","namespace":"ms"}, "workload": "san-mono-document-attachment-portal-5cdf4969dc-6vm6f"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-document-attachment-portal-5cdf4969dc-6vm6f","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-document-attachment-portal-5cdf4969dc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"node-collector-8667dd4d94-kw9kd","namespace":"trivy-system"}, "workload": "node-collector-8667dd4d94-kw9kd"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"node-collector-8667dd4d94-kw9kd","namespace":"trivy-system"}, "controllerKind": "Job", "controllerName": "node-collector-8667dd4d94"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-tofu-7997748b8f-vbpl8","namespace":"ms"}, "workload": "san-mono-tofu-7997748b8f-vbpl8"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-tofu-7997748b8f-vbpl8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-tofu-7997748b8f"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-search-server-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-search-server-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-search-server-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-search-server"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics00-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-analytics00-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics00-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics00"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-portal-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-portal-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-portal-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-portal"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"cert-manager-cainjector-586bbcb7c5-n2pzf","namespace":"ingress"}, "workload": "cert-manager-cainjector-586bbcb7c5-n2pzf"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-cainjector-586bbcb7c5-n2pzf","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-cainjector-586bbcb7c5"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-node-cp84s","namespace":"kube-system"}, "workload": "aws-node-cp84s"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-cp84s","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"metrics-server-df7b7cb8c-xj9gn","namespace":"kube-system"}, "workload": "metrics-server-df7b7cb8c-xj9gn"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"metrics-server-df7b7cb8c-xj9gn","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "metrics-server-df7b7cb8c"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-comms-honcho-5dd796d899-nn7vs","namespace":"ms"}, "workload": "san-mono-comms-honcho-5dd796d899-nn7vs"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-comms-honcho-5dd796d899-nn7vs","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-comms-honcho-5dd796d899"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"geo-checker-85ff87d7cd-n7nv7","namespace":"cloud"}, "workload": "geo-checker-85ff87d7cd-n7nv7"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"geo-checker-85ff87d7cd-n7nv7","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "geo-checker-85ff87d7cd"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-policy-portal-7578f587bc-whgmx","namespace":"ms"}, "workload": "san-mono-policy-portal-7578f587bc-whgmx"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-portal-7578f587bc-whgmx","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-portal-7578f587bc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"opentelemetry-operator-c95bd89f7-fbjh8","namespace":"opentelemetry-operator-system"}, "workload": "opentelemetry-operator-c95bd89f7-fbjh8"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"opentelemetry-operator-c95bd89f7-fbjh8","namespace":"opentelemetry-operator-system"}, "controllerKind": "ReplicaSet", "controllerName": "opentelemetry-operator-c95bd89f7"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-x7nt9","namespace":"appian-site"}, "workload": "efs-csi-controller-755df4dfc-x7nt9"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-x7nt9","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "efs-csi-controller-755df4dfc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution01-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-execution01-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution01-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution01"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"prometheus-prometheus-operator-kube-p-prometheus-0","namespace":"cloud"}, "workload": "prometheus-prometheus-operator-kube-p-prometheus-0"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-prometheus-operator-kube-p-prometheus-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "prometheus-prometheus-operator-kube-p-prometheus"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"cert-manager-webhook-7c95fcd868-rdvwc","namespace":"ingress"}, "workload": "cert-manager-webhook-7c95fcd868-rdvwc"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-webhook-7c95fcd868-rdvwc","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-webhook-7c95fcd868"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"etl-data-ops-service-db-srcvf","namespace":"ms"}, "workload": "etl-data-ops-service-db-srcvf"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"etl-data-ops-service-db-srcvf","namespace":"ms"}, "controllerKind": "Job", "controllerName": "etl-data-ops-service-db"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-comms-comms-content-56f999ff69-5fgpd","namespace":"ms"}, "workload": "san-comms-comms-content-56f999ff69-5fgpd"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-comms-comms-content-56f999ff69-5fgpd","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-comms-comms-content-56f999ff69"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-sms-honcho-5b79bf45db-gkzg9","namespace":"ms"}, "workload": "san-mono-sms-honcho-5b79bf45db-gkzg9"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-sms-honcho-5b79bf45db-gkzg9","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-sms-honcho-5b79bf45db"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-mock-sms-service-57997dc44d-pjpvm","namespace":"ms"}, "workload": "san-mono-mock-sms-service-57997dc44d-pjpvm"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-sms-service-57997dc44d-pjpvm","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-sms-service-57997dc44d"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-node-8nd5w","namespace":"appian-site"}, "workload": "efs-csi-node-8nd5w"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-8nd5w","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"prometheus-operator-kube-p-operator-5bc595f697-27dj4","namespace":"cloud"}, "workload": "prometheus-operator-kube-p-operator-5bc595f697-27dj4"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-operator-kube-p-operator-5bc595f697-27dj4","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-operator-kube-p-operator-5bc595f697"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-vwd94","namespace":"ingress"}, "workload": "aws-lb-controller-aws-load-balancer-controller-598485f648-vwd94"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-vwd94","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"aws-node-fhwzb","namespace":"kube-system"}, "workload": "aws-node-fhwzb"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-fhwzb","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"appian-migration-db-26kp4","namespace":"ms"}, "workload": "appian-migration-db-26kp4"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-migration-db-26kp4","namespace":"ms"}, "controllerKind": "Job", "controllerName": "appian-migration-db"} 2024-02-01T12:17:25Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"appian-operator-controllers-566f6d5869-5fjmv","namespace":"appian-operator"}, "workload": "appian-operator-controllers-566f6d5869-5fjmv"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-operator-controllers-566f6d5869-5fjmv","namespace":"appian-operator"}, "controllerKind": "ReplicaSet", "controllerName": "appian-operator-controllers-566f6d5869"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution00-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-execution00-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution00-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution00"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-html2pdf-6577cd9f76-x2mlx","namespace":"ms"}, "workload": "san-mono-html2pdf-6577cd9f76-x2mlx"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-html2pdf-6577cd9f76-x2mlx","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-html2pdf-6577cd9f76"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-mock-equifax-5f55447457-znk47","namespace":"ms"}, "workload": "san-mono-mock-equifax-5f55447457-znk47"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-equifax-5f55447457-znk47","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-equifax-5f55447457"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-node-85m9t","namespace":"appian-site"}, "workload": "efs-csi-node-85m9t"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-85m9t","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-2hp7q","namespace":"kube-system"}, "workload": "ebs-csi-controller-77fbf98c76-2hp7q"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-2hp7q","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "ebs-csi-controller-77fbf98c76"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-proxy-4mn82","namespace":"kube-system"}, "workload": "kube-proxy-4mn82"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-4mn82","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-email-honcho-5f9b8895fd-9b79q","namespace":"ms"}, "workload": "san-mono-email-honcho-5f9b8895fd-9b79q"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-email-honcho-5f9b8895fd-9b79q","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-email-honcho-5f9b8895fd"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-infobip-sms-848bcfcd85-6thvk","namespace":"ms"}, "workload": "san-mono-infobip-sms-848bcfcd85-6thvk"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-infobip-sms-848bcfcd85-6thvk","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-infobip-sms-848bcfcd85"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-pdfgen-b557dfc76-zl7w8","namespace":"ms"}, "workload": "san-mono-pdfgen-b557dfc76-zl7w8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-pdfgen-b557dfc76-zl7w8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-pdfgen-b557dfc76"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"oauth2-proxy-kubeview-646f99cc55-x7fpz","namespace":"cloud"}, "workload": "oauth2-proxy-kubeview-646f99cc55-x7fpz"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"oauth2-proxy-kubeview-646f99cc55-x7fpz","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "oauth2-proxy-kubeview-646f99cc55"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-auth-api-68464bff8f-8xz6s","namespace":"ms"}, "workload": "san-mono-auth-api-68464bff8f-8xz6s"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-auth-api-68464bff8f-8xz6s","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-auth-api-68464bff8f"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-forums-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-forums-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-forums-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-forums"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-f5426","namespace":"ingress"}, "workload": "ingress-nginx-controller-d899bbd5-f5426"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-f5426","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"coredns-7478dc474c-ngr8n","namespace":"kube-system"}, "workload": "coredns-7478dc474c-ngr8n"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"coredns-7478dc474c-ngr8n","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "coredns-7478dc474c"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-node-ktns4","namespace":"kube-system"}, "workload": "ebs-csi-node-ktns4"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-ktns4","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-node-pm8f8","namespace":"appian-site"}, "workload": "efs-csi-node-pm8f8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-pm8f8","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"efs-csi-node-qzqgv","namespace":"appian-site"}, "workload": "efs-csi-node-qzqgv"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-qzqgv","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"dev-cloudbeaver-oauth2-proxy-88c955589-2qx8q","namespace":"cloud"}, "workload": "dev-cloudbeaver-oauth2-proxy-88c955589-2qx8q"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"dev-cloudbeaver-oauth2-proxy-88c955589-2qx8q","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "dev-cloudbeaver-oauth2-proxy-88c955589"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-policy-config-vault-5c4557df6-c9qfb","namespace":"ms"}, "workload": "san-mono-policy-config-vault-5c4557df6-c9qfb"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-config-vault-5c4557df6-c9qfb","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-config-vault-5c4557df6"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-telephony-connect-78c5f9f8f6-tl4tz","namespace":"ms"}, "workload": "san-mono-telephony-connect-78c5f9f8f6-tl4tz"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-telephony-connect-78c5f9f8f6-tl4tz","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-telephony-connect-78c5f9f8f6"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-unclassified-doc-vault-85495675cb-w99px","namespace":"ms"}, "workload": "san-mono-unclassified-doc-vault-85495675cb-w99px"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-unclassified-doc-vault-85495675cb-w99px","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-unclassified-doc-vault-85495675cb"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-download-stats-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-download-stats-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-download-stats-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-download-stats"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-proxy-pmmkh","namespace":"kube-system"}, "workload": "kube-proxy-pmmkh"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-pmmkh","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-tfrpk","namespace":"appian-site"}, "workload": "san-kpmg-dev-httpd-67d66df765-tfrpk"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-tfrpk","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "san-kpmg-dev-httpd-67d66df765"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-equifax-57dbddc4fc-jl8d8","namespace":"ms"}, "workload": "san-mono-equifax-57dbddc4fc-jl8d8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-equifax-57dbddc4fc-jl8d8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-equifax-57dbddc4fc"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-22fm4","namespace":"appian-site"}, "workload": "san-kpmg-dev-httpd-67d66df765-22fm4"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-22fm4","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "san-kpmg-dev-httpd-67d66df765"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-kafka-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-kafka-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-kafka-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-kafka"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-content-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-content-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-content-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-content"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"cert-manager-d7d6564bf-2gzx5","namespace":"ingress"}, "workload": "cert-manager-d7d6564bf-2gzx5"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-d7d6564bf-2gzx5","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-d7d6564bf"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-document-tools-5d955d7fc8-8mjxf","namespace":"ms"}, "workload": "san-mono-document-tools-5d955d7fc8-8mjxf"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-document-tools-5d955d7fc8-8mjxf","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-document-tools-5d955d7fc8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-documents-vault-converter-555f57769f-q6jmh","namespace":"ms"}, "workload": "san-mono-documents-vault-converter-555f57769f-q6jmh"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-documents-vault-converter-555f57769f-q6jmh","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-documents-vault-converter-555f57769f"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-node-skrpl","namespace":"kube-system"}, "workload": "ebs-csi-node-skrpl"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-skrpl","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-evaluation-engine-788789d479-kpmt2","namespace":"ms"}, "workload": "san-mono-evaluation-engine-788789d479-kpmt2"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-evaluation-engine-788789d479-kpmt2","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-evaluation-engine-788789d479"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-templ8r-54647cd45c-zgpj4","namespace":"ms"}, "workload": "san-mono-templ8r-54647cd45c-zgpj4"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-templ8r-54647cd45c-zgpj4","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-templ8r-54647cd45c"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "workload": "trivy-operator-76df69bddf-n4qj2"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "controllerKind": "ReplicaSet", "controllerName": "trivy-operator-76df69bddf"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-webapp-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-webapp-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-webapp-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-webapp"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"prometheus-operator-kube-state-metrics-57bc75c6d6-wmq2v","namespace":"cloud"}, "workload": "prometheus-operator-kube-state-metrics-57bc75c6d6-wmq2v"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-operator-kube-state-metrics-57bc75c6d6-wmq2v","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-operator-kube-state-metrics-57bc75c6d6"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"coredns-7478dc474c-qwdg2","namespace":"kube-system"}, "workload": "coredns-7478dc474c-qwdg2"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"coredns-7478dc474c-qwdg2","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "coredns-7478dc474c"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ebs-csi-node-87nz9","namespace":"kube-system"}, "workload": "ebs-csi-node-87nz9"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-87nz9","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"kube-proxy-n52hm","namespace":"kube-system"}, "workload": "kube-proxy-n52hm"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-n52hm","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-comms-editemplate-896d4dfcc-thhj5","namespace":"ms"}, "workload": "san-comms-editemplate-896d4dfcc-thhj5"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-comms-editemplate-896d4dfcc-thhj5","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-comms-editemplate-896d4dfcc"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-email-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-notifications-email-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-email-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-notifications-email"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"operation-cloudbeaver-0","namespace":"cloud"}, "workload": "operation-cloudbeaver-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"operation-cloudbeaver-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "operation-cloudbeaver"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-mock-auth-provider-694c5d7465-zqnb8","namespace":"ms"}, "workload": "san-mono-mock-auth-provider-694c5d7465-zqnb8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-auth-provider-694c5d7465-zqnb8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-auth-provider-694c5d7465"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-process-design-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-process-design-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-process-design-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-process-design"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"alertmanager-prometheus-operator-kube-p-alertmanager-0","namespace":"cloud"}, "workload": "alertmanager-prometheus-operator-kube-p-alertmanager-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"alertmanager-prometheus-operator-kube-p-alertmanager-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "alertmanager-prometheus-operator-kube-p-alertmanager"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"reloader-reloader-55ff984784-d4k8h","namespace":"ms"}, "workload": "reloader-reloader-55ff984784-d4k8h"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"reloader-reloader-55ff984784-d4k8h","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "reloader-reloader-55ff984784"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-auth-service-58bb8db5f4-7tk4p","namespace":"ms"}, "workload": "san-mono-auth-service-58bb8db5f4-7tk4p"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-auth-service-58bb8db5f4-7tk4p","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-auth-service-58bb8db5f4"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-case-data-vault-674598b6d7-qbhld","namespace":"ms"}, "workload": "san-mono-case-data-vault-674598b6d7-qbhld"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-case-data-vault-674598b6d7-qbhld","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-case-data-vault-674598b6d7"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-companieshouse-data-verificator-5dc877b9b9-5nmt8","namespace":"ms"}, "workload": "san-mono-companieshouse-data-verificator-5dc877b9b9-5nmt8"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-companieshouse-data-verificator-5dc877b9b9-5nmt8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-companieshouse-data-verificator-5dc877b9b9"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-customer-doc-vault-658bb69775-lzjjf","namespace":"ms"}, "workload": "san-mono-customer-doc-vault-658bb69775-lzjjf"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-customer-doc-vault-658bb69775-lzjjf","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-customer-doc-vault-658bb69775"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-outbound-emails-doc-vault-558b8698f7-xpkfb","namespace":"ms"}, "workload": "san-mono-outbound-emails-doc-vault-558b8698f7-xpkfb"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-outbound-emails-doc-vault-558b8698f7-xpkfb","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-outbound-emails-doc-vault-558b8698f7"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics01-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-analytics01-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics01-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics01"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution02-0","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-execution02-0"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution02-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution02"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-l4nf6","namespace":"ingress"}, "workload": "ingress-nginx-controller-d899bbd5-l4nf6"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-l4nf6","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-identity-enrichment-576d748794-rzlzn","namespace":"ms"}, "workload": "san-mono-identity-enrichment-576d748794-rzlzn"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-identity-enrichment-576d748794-rzlzn","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-identity-enrichment-576d748794"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"san-mono-melissa-address-lookup-5dcbbd6bd9-c9qhk","namespace":"ms"}, "workload": "san-mono-melissa-address-lookup-5dcbbd6bd9-c9qhk"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-melissa-address-lookup-5dcbbd6bd9-c9qhk","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-melissa-address-lookup-5dcbbd6bd9"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"my-collector-collector-8496dff6b4-bx67d","namespace":"opentelemetry-operator-system"}, "workload": "my-collector-collector-8496dff6b4-bx67d"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"my-collector-collector-8496dff6b4-bx67d","namespace":"opentelemetry-operator-system"}, "controllerKind": "ReplicaSet", "controllerName": "my-collector-collector-8496dff6b4"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"node-collector-5656c44f56-xz9xx","namespace":"trivy-system"}, "workload": "node-collector-5656c44f56-xz9xx"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"node-collector-5656c44f56-xz9xx","namespace":"trivy-system"}, "controllerKind": "Job", "controllerName": "node-collector-5656c44f56"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "job", "controllerGroup": "batch", "controllerKind": "Job", "worker count": 1} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28444140","namespace":"cloud"}, "workload": "appian-core-db-cleanup-28444140"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed job {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28444140","namespace":"cloud"}, "controllerKind": "CronJob", "controllerName": "appian-core-db-cleanup"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Job", "name": {"name":"appian-migration-db","namespace":"ms"}, "workload": "appian-migration-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "Job", "name": {"name":"appian-migration-db","namespace":"ms"}, "workload": "appian-migration-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Job", "name": {"name":"etl-data-ops-service-db","namespace":"ms"}, "workload": "etl-data-ops-service-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "Job", "name": {"name":"etl-data-ops-service-db","namespace":"ms"}, "workload": "etl-data-ops-service-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Job", "name": {"name":"mi-reportingserver-service-db","namespace":"ms"}, "workload": "mi-reportingserver-service-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "Job", "name": {"name":"mi-reportingserver-service-db","namespace":"ms"}, "workload": "mi-reportingserver-service-db"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28445580","namespace":"cloud"}, "workload": "appian-core-db-cleanup-28445580"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Ignoring managed job {"kind": "Job", "name": {"name":"appian-core-db-cleanup-28445580","namespace":"cloud"}, "controllerKind": "CronJob", "controllerName": "appian-core-db-cleanup"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "networkpolicy", "controllerGroup": "networking.k8s.io", "controllerKind": "NetworkPolicy", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "Job", "name": {"name":"appian-migration-db","namespace":"ms"}} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "clusterrolebinding", "controllerGroup": "rbac.authorization.k8s.io", "controllerKind": "ClusterRoleBinding", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "DaemonSet", "name": {"name":"efs-csi-node","namespace":"appian-site"}} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "statefulset", "controllerGroup": "apps", "controllerKind": "StatefulSet", "worker count": 1} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "StatefulSet", "name": {"name":"alertmanager-prometheus-operator-kube-p-alertmanager","namespace":"cloud"}, "workload": "alertmanager-prometheus-operator-kube-p-alertmanager"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "NetworkPolicy", "name": {"name":"pgadmin-pgadmin4","namespace":"cloud"}} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "StatefulSet", "name": {"name":"alertmanager-prometheus-operator-kube-p-alertmanager","namespace":"cloud"}, "workload": "alertmanager-prometheus-operator-kube-p-alertmanager"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-search-server","namespace":"appian-site"}, "workload": "san-kpmg-dev-search-server"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-search-server","namespace":"appian-site"}, "workload": "san-kpmg-dev-search-server"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-service-manager-notifications-email","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-notifications-email"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Submitting a scan for the workload {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-service-manager-notifications-email","namespace":"appian-site"}, "workload": "san-kpmg-dev-service-manager-notifications-email"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Checking scan jobs limit {"pre scan job processing for workload:": "san-kpmg-dev-service-manager-notifications-email", "count": 0, "limit": 2} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "Role", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-leader-election-role","namespace":"ingress"}} 2024-02-01T12:17:25Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"cert-manager-webhook:dynamic-serving","namespace":"ingress"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "infraassessmentreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "InfraAssessmentReport", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "exposedsecretreport", "controllerGroup": "aquasecurity.github.io", "controllerKind": "ExposedSecretReport", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "Ingress", "name": {"name":"san-mono-equifax-ingress","namespace":"ms"}} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "replicaset", "controllerGroup": "apps", "controllerKind": "ReplicaSet", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-simple-email-58b669fcbd","namespace":"ms"}, "name": "san-mono-simple-email-58b669fcbd"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-templ8r-757556dfdc","namespace":"ms"}, "name": "san-mono-templ8r-757556dfdc"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"ingress-nginx-controller-6cb95d6659","namespace":"ingress"}, "name": "ingress-nginx-controller-6cb95d6659"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-identity-enrichment-66b79bf87","namespace":"ms"}, "name": "san-mono-identity-enrichment-66b79bf87"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-companieshouse-data-verificator-5bd8477f95","namespace":"ms"}, "name": "san-mono-companieshouse-data-verificator-5bd8477f95"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-polisher-5cc7b8858c","namespace":"ms"}, "name": "san-mono-policy-polisher-5cc7b8858c"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-polisher-758dd766bc","namespace":"ms"}, "name": "san-mono-policy-polisher-758dd766bc"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-sms-honcho-69d75f5d89","namespace":"ms"}, "name": "san-mono-sms-honcho-69d75f5d89"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-5d5766ffd5","namespace":"ms"}, "name": "san-mono-telephony-connect-5d5766ffd5"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-f78c4bfcb","namespace":"ms"}, "name": "san-mono-telephony-connect-f78c4bfcb"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"appian-operator-webhooks-76785dfc","namespace":"appian-operator"}, "name": "appian-operator-webhooks-76785dfc"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"cert-manager-cainjector-cd87cd75f","namespace":"ingress"}, "name": "cert-manager-cainjector-cd87cd75f"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-html2pdf-5d9f544975","namespace":"ms"}, "name": "san-mono-html2pdf-5d9f544975"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-equifax-78878db969","namespace":"ms"}, "name": "san-mono-mock-equifax-78878db969"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-outbound-letters-doc-vault-bf559c5d8","namespace":"ms"}, "name": "san-mono-outbound-letters-doc-vault-bf559c5d8"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-comms-honcho-7f5595847d","namespace":"ms"}, "name": "san-mono-comms-honcho-7f5595847d"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-docusign-5db99788b6","namespace":"ms"}, "name": "san-mono-docusign-5db99788b6"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-file-vault-546dfb5498","namespace":"ms"}, "name": "san-mono-file-vault-546dfb5498"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-documents-vault-converter-86c76cc657","namespace":"ms"}, "name": "san-mono-documents-vault-converter-86c76cc657"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-equifax-657bb79f54","namespace":"ms"}, "name": "san-mono-equifax-657bb79f54"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-identity-enrichment-6f6d7dfcdc","namespace":"ms"}, "name": "san-mono-identity-enrichment-6f6d7dfcdc"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"my-collector-collector-65d6d5859f","namespace":"opentelemetry-operator-system"}, "name": "my-collector-collector-65d6d5859f"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "replicationcontroller", "controllerGroup": "", "controllerKind": "ReplicationController", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "resourcequota", "controllerGroup": "", "controllerKind": "ResourceQuota", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "daemonset", "controllerGroup": "apps", "controllerKind": "DaemonSet", "worker count": 1} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "DaemonSet", "name": {"name":"aws-node","namespace":"kube-system"}, "workload": "aws-node"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "DaemonSet", "name": {"name":"aws-node","namespace":"kube-system"}, "workload": "aws-node"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "DaemonSet", "name": {"name":"efs-csi-node","namespace":"appian-site"}, "workload": "efs-csi-node"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "DaemonSet", "name": {"name":"efs-csi-node","namespace":"appian-site"}, "workload": "efs-csi-node"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "DaemonSet", "name": {"name":"ebs-csi-node-windows","namespace":"kube-system"}, "workload": "ebs-csi-node-windows"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "DaemonSet", "name": {"name":"ebs-csi-node-windows","namespace":"kube-system"}, "workload": "ebs-csi-node-windows"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "DaemonSet", "name": {"name":"ebs-csi-node","namespace":"kube-system"}, "workload": "ebs-csi-node"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "DaemonSet", "name": {"name":"ebs-csi-node","namespace":"kube-system"}, "workload": "ebs-csi-node"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "service", "controllerGroup": "", "controllerKind": "Service", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"kube-root-ca.crt","namespace":"cloud"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "DaemonSet", "name": {"name":"kube-proxy","namespace":"kube-system"}, "workload": "kube-proxy"} 2024-02-01T12:17:27Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "DaemonSet", "name": {"name":"kube-proxy","namespace":"kube-system"}, "workload": "kube-proxy"} 2024-02-01T12:17:26Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"prometheus-operator-kube-state-metrics-57bc75c6d6","namespace":"cloud"}, "workload": "prometheus-operator-kube-state-metrics-57bc75c6d6"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"kube-web-view"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:26Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"eks:certificate-controller","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:26Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-email-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-notifications-email"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"operation-cloudbeaver-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "operation-cloudbeaver"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-case-data-vault-674598b6d7-qbhld","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-case-data-vault-674598b6d7"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-companieshouse-data-verificator-5dc877b9b9-5nmt8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-companieshouse-data-verificator-5dc877b9b9"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-customer-doc-vault-658bb69775-lzjjf","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-customer-doc-vault-658bb69775"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-auth-provider-694c5d7465-zqnb8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-auth-provider-694c5d7465"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-process-design-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-process-design"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"alertmanager-prometheus-operator-kube-p-alertmanager-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "alertmanager-prometheus-operator-kube-p-alertmanager"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"reloader-reloader-55ff984784-d4k8h","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "reloader-reloader-55ff984784"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-auth-service-58bb8db5f4-7tk4p","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-auth-service-58bb8db5f4"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-outbound-emails-doc-vault-558b8698f7-xpkfb","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-outbound-emails-doc-vault-558b8698f7"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-melissa-address-lookup-5dcbbd6bd9-c9qhk","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-melissa-address-lookup-5dcbbd6bd9"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"my-collector-collector-8496dff6b4-bx67d","namespace":"opentelemetry-operator-system"}, "controllerKind": "ReplicaSet", "controllerName": "my-collector-collector-8496dff6b4"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"node-collector-5656c44f56-xz9xx","namespace":"trivy-system"}, "controllerKind": "Job", "controllerName": "node-collector-5656c44f56"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics01-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics01"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution02-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution02"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-l4nf6","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-identity-enrichment-576d748794-rzlzn","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-identity-enrichment-576d748794"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-5pgft","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-vrt6f","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-file-vault-7db998bf47-gqjdm","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-file-vault-7db998bf47"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-zookeeper-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-zookeeper"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-zgzl8","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-4nxj9","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-gkl4z","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:27Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-hooyu-service-74b47495c5-ffhrd","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-hooyu-service-74b47495c5"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-docusign-8fbdcf59f-hxpvz","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-docusign-8fbdcf59f"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-m29zz","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-rwbrw","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-letters-honcho-7464597c78-pgqz5","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-letters-honcho-7464597c78"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-web-view-bb9b68497-cj4n8","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "kube-web-view-bb9b68497"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-njwkt","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"pgadmin-pgadmin4-7975b5b7f4-bh9gr","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "pgadmin-pgadmin4-7975b5b7f4"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mi-report-email-6dddc9c89f-qmkc9","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mi-report-email-6dddc9c89f"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-outbound-letters-doc-vault-68ccd8d488-tpwf6","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-outbound-letters-doc-vault-68ccd8d488"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-simple-email-5cf6596865-95glq","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-simple-email-5cf6596865"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-xccs7","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "efs-csi-controller-755df4dfc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-groups-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-groups"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-notifications-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-notifications"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"k8s-event-logger-8f8489b75-567hc","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "k8s-event-logger-8f8489b75"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-operator-webhooks-6d5b59dcc6-qwd5l","namespace":"appian-operator"}, "controllerKind": "ReplicaSet", "controllerName": "appian-operator-webhooks-6d5b59dcc6"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-data-server-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-data-server"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"service-s3browser-5dcc6495f9-475z5","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "service-s3browser-5dcc6495f9"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-hooyu-request-service-5bc4c7bb6b-h9wmc","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-hooyu-request-service-5bc4c7bb6b"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-wpzzb","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"autoscaler-aws-cluster-autoscaler-7d986d6b67-twjfn","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "autoscaler-aws-cluster-autoscaler-7d986d6b67"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-bgjrv","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-adapter-9c44d9d96-gkf4d","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-adapter-9c44d9d96"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-polisher-644fc4c75d-kg5c4","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-polisher-644fc4c75d"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"node-collector-8667dd4d94-kw9kd","namespace":"trivy-system"}, "controllerKind": "Job", "controllerName": "node-collector-8667dd4d94"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics02-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics02"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-channels-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-channels"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-9jtk6","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "ebs-csi-controller-77fbf98c76"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-document-attachment-portal-5cdf4969dc-6vm6f","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-document-attachment-portal-5cdf4969dc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-cp84s","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"metrics-server-df7b7cb8c-xj9gn","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "metrics-server-df7b7cb8c"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-comms-honcho-5dd796d899-nn7vs","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-comms-honcho-5dd796d899"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-tofu-7997748b8f-vbpl8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-tofu-7997748b8f"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-search-server-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-search-server"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-analytics00-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-analytics00"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-portal-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-portal"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-cainjector-586bbcb7c5-n2pzf","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-cainjector-586bbcb7c5"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"geo-checker-85ff87d7cd-n7nv7","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "geo-checker-85ff87d7cd"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-portal-7578f587bc-whgmx","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-portal-7578f587bc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"opentelemetry-operator-c95bd89f7-fbjh8","namespace":"opentelemetry-operator-system"}, "controllerKind": "ReplicaSet", "controllerName": "opentelemetry-operator-c95bd89f7"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"etl-data-ops-service-db-srcvf","namespace":"ms"}, "controllerKind": "Job", "controllerName": "etl-data-ops-service-db"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-comms-comms-content-56f999ff69-5fgpd","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-comms-comms-content-56f999ff69"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-sms-honcho-5b79bf45db-gkzg9","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-sms-honcho-5b79bf45db"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-controller-755df4dfc-x7nt9","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "efs-csi-controller-755df4dfc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution01-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution01"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-prometheus-operator-kube-p-prometheus-0","namespace":"cloud"}, "controllerKind": "StatefulSet", "controllerName": "prometheus-prometheus-operator-kube-p-prometheus"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-webhook-7c95fcd868-rdvwc","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-webhook-7c95fcd868"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-sms-service-57997dc44d-pjpvm","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-sms-service-57997dc44d"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-migration-db-26kp4","namespace":"ms"}, "controllerKind": "Job", "controllerName": "appian-migration-db"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-8nd5w","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-operator-kube-p-operator-5bc595f697-27dj4","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-operator-kube-p-operator-5bc595f697"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648-vwd94","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"aws-node-fhwzb","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "aws-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"appian-operator-controllers-566f6d5869-5fjmv","namespace":"appian-operator"}, "controllerKind": "ReplicaSet", "controllerName": "appian-operator-controllers-566f6d5869"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-execution00-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-execution00"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-html2pdf-6577cd9f76-x2mlx","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-html2pdf-6577cd9f76"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-mock-equifax-5f55447457-znk47","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-mock-equifax-5f55447457"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-infobip-sms-848bcfcd85-6thvk","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-infobip-sms-848bcfcd85"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-pdfgen-b557dfc76-zl7w8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-pdfgen-b557dfc76"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-85m9t","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-controller-77fbf98c76-2hp7q","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "ebs-csi-controller-77fbf98c76"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-4mn82","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-email-honcho-5f9b8895fd-9b79q","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-email-honcho-5f9b8895fd"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"oauth2-proxy-kubeview-646f99cc55-x7fpz","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "oauth2-proxy-kubeview-646f99cc55"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-auth-api-68464bff8f-8xz6s","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-auth-api-68464bff8f"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-forums-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-forums"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ingress-nginx-controller-d899bbd5-f5426","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"coredns-7478dc474c-ngr8n","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "coredns-7478dc474c"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-ktns4","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-telephony-connect-78c5f9f8f6-tl4tz","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-telephony-connect-78c5f9f8f6"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-unclassified-doc-vault-85495675cb-w99px","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-unclassified-doc-vault-85495675cb"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-pm8f8","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"efs-csi-node-qzqgv","namespace":"appian-site"}, "controllerKind": "DaemonSet", "controllerName": "efs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"dev-cloudbeaver-oauth2-proxy-88c955589-2qx8q","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "dev-cloudbeaver-oauth2-proxy-88c955589"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-policy-config-vault-5c4557df6-c9qfb","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-policy-config-vault-5c4557df6"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-download-stats-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-download-stats"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-pmmkh","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-tfrpk","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "san-kpmg-dev-httpd-67d66df765"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-equifax-57dbddc4fc-jl8d8","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-equifax-57dbddc4fc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-httpd-67d66df765-22fm4","namespace":"appian-site"}, "controllerKind": "ReplicaSet", "controllerName": "san-kpmg-dev-httpd-67d66df765"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-documents-vault-converter-555f57769f-q6jmh","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-documents-vault-converter-555f57769f"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-kafka-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-kafka"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-service-manager-content-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-service-manager-content"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"cert-manager-d7d6564bf-2gzx5","namespace":"ingress"}, "controllerKind": "ReplicaSet", "controllerName": "cert-manager-d7d6564bf"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-document-tools-5d955d7fc8-8mjxf","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-document-tools-5d955d7fc8"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-skrpl","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-evaluation-engine-788789d479-kpmt2","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-evaluation-engine-788789d479"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-mono-templ8r-54647cd45c-zgpj4","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-mono-templ8r-54647cd45c"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "controllerKind": "ReplicaSet", "controllerName": "trivy-operator-76df69bddf"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-kpmg-dev-webapp-0","namespace":"appian-site"}, "controllerKind": "StatefulSet", "controllerName": "san-kpmg-dev-webapp"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"prometheus-operator-kube-state-metrics-57bc75c6d6-wmq2v","namespace":"cloud"}, "controllerKind": "ReplicaSet", "controllerName": "prometheus-operator-kube-state-metrics-57bc75c6d6"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"coredns-7478dc474c-qwdg2","namespace":"kube-system"}, "controllerKind": "ReplicaSet", "controllerName": "coredns-7478dc474c"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"ebs-csi-node-87nz9","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "ebs-csi-node"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"kube-proxy-n52hm","namespace":"kube-system"}, "controllerKind": "DaemonSet", "controllerName": "kube-proxy"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"san-comms-editemplate-896d4dfcc-thhj5","namespace":"ms"}, "controllerKind": "ReplicaSet", "controllerName": "san-comms-editemplate-896d4dfcc"} 2024-02-01T12:17:28Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "Service", "name": {"name":"trivy-operator","namespace":"trivy-system"}} 2024-02-01T12:17:26Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"statefulset-7976db88d4","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-56cc9777b","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-san-mono-identity-enrichment-576d748794-xray-daemon","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-5f8f54778d","namespace":"ms"}, "durationToTTLExpiration": "18h41m57.665240021s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"statefulset-756d44b87c","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"daemonset-ebs-csi-node-ebs-plugin","namespace":"kube-system"}, "durationToTTLExpiration": "20h50m20.664976188s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-kube-proxy-kube-proxy","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-66bf55fd4","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-cert-manager-d7d6564bf-cert-manager-controller","namespace":"ingress"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"daemonset-ebs-csi-node-liveness-probe","namespace":"kube-system"}, "durationToTTLExpiration": "20h50m20.575489056s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"job-appian-migration-db-appian-migration-db","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-75487ffc8b","namespace":"appian-operator"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-prometheus-adapter-9c44d9d96-prometheus-adapter","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"eks:cloud-provider-extraction-migration"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:28Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"system::leader-locking-kube-scheduler","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-78f99b5b8c","namespace":"ms"}, "durationToTTLExpiration": "18h24m48.574718598s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"daemonset-ebs-csi-node-node-driver-registrar","namespace":"kube-system"}, "durationToTTLExpiration": "20h50m20.572333671s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-ebs-csi-node-windows-liveness-probe","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"job-etl-data-ops-service-db-etl-data-ops-service-db","namespace":"ms"}, "durationToTTLExpiration": "19h53m58.572027854s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-597b888b4d","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-service-s3browser-5dcc6495f9-service-s3browser","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-aws-node-aws-eks-nodeagent","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-dev-cloudbeaver-oauth2-proxy-88c955589-oauth2-proxy","namespace":"cloud"}, "durationToTTLExpiration": "20h3m47.571530288s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-7ff7d7c895","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-cdc4c8d97","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-efs-csi-node-efs-plugin","namespace":"appian-site"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-san-mono-mock-auth-provider-694c5d7465-xray-daemon","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-san-mono-mock-sms-service-57997dc44d-xray-daemon","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-6bb67b7595","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"statefulset-b7cff7675","namespace":"cloud"}, "durationToTTLExpiration": "21h9m42.570534515s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-aws-node-aws-vpc-cni-init","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-5968688f5d","namespace":"ms"}, "durationToTTLExpiration": "19h35m30.570273227s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"job-mi-reportingserver-service-db-mi-reportingserver-service-db","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-san-mono-evaluation-engine-788789d479-xray-daemon","namespace":"ms"}, "durationToTTLExpiration": "18h41m58.570026099s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-k8s-event-logger-8f8489b75-app","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-kube-web-view-bb9b68497-kube-web-view","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-aws-node-aws-node","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-6d8f7b45d6","namespace":"ms"}, "durationToTTLExpiration": "19h35m30.569525804s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-efs-csi-node-csi-driver-registrar","namespace":"appian-site"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-ingress-nginx-controller-d899bbd5-controller","namespace":"ingress"}, "durationToTTLExpiration": "19h20m41.569229069s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-metrics-server-df7b7cb8c-metrics-server","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-ebs-csi-node-windows-ebs-plugin","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-san-mono-document-tools-5d955d7fc8-xray-daemon","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-san-mono-pdfgen-b557dfc76-san-mono-pdfgen","namespace":"ms"}, "durationToTTLExpiration": "19h57m36.568753772s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-san-mono-policy-polisher-644fc4c75d-xray-daemon","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-5c5c479c89","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-cert-manager-webhook-7c95fcd868-cert-manager-webhook","namespace":"ingress"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-696f76d859","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"statefulset-san-kpmg-dev-search-server-search-server","namespace":"appian-site"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-84c5f45bbc","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-ebs-csi-node-windows-node-driver-registrar","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-san-mono-pdfgen-b557dfc76-xray-daemon","namespace":"ms"}, "durationToTTLExpiration": "19h57m37.374413796s"} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-geo-checker-85ff87d7cd-geo-checker","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-74b9cc44bd","namespace":"ingress"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-9f5d89ffb","namespace":"ingress"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-coredns-7478dc474c-coredns","namespace":"kube-system"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"daemonset-efs-csi-node-liveness-probe","namespace":"appian-site"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"cronjob-appian-core-db-cleanup-vacuum","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-oauth2-proxy-kubeview-646f99cc55-oauth2-proxy","namespace":"cloud"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport Ignoring report without TTL set {"report": {"name":"replicaset-7f9569876d","namespace":"ms"}} 2024-02-01T12:17:28Z DEBUG reconciler.ttlreport RequeueAfter {"report": {"name":"replicaset-san-mono-mock-equifax-5f55447457-xray-daemon","namespace":"ms"}, "durationToTTLExpiration": "18h24m49.373040177s"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"prometheus-operator-kube-state-metrics-57bc75c6d6","namespace":"cloud"}, "workload": "prometheus-operator-kube-state-metrics-57bc75c6d6"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"cert-manager-webhook-7c95fcd868","namespace":"ingress"}, "workload": "cert-manager-webhook-7c95fcd868"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"cert-manager-webhook-7c95fcd868","namespace":"ingress"}, "workload": "cert-manager-webhook-7c95fcd868"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-document-tools-5d955d7fc8","namespace":"ms"}, "workload": "san-mono-document-tools-5d955d7fc8"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-document-tools-5d955d7fc8","namespace":"ms"}, "workload": "san-mono-document-tools-5d955d7fc8"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-polisher-644fc4c75d","namespace":"ms"}, "workload": "san-mono-policy-polisher-644fc4c75d"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-polisher-644fc4c75d","namespace":"ms"}, "workload": "san-mono-policy-polisher-644fc4c75d"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-companieshouse-data-verificator-5dc877b9b9","namespace":"ms"}, "workload": "san-mono-companieshouse-data-verificator-5dc877b9b9"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-companieshouse-data-verificator-5dc877b9b9","namespace":"ms"}, "workload": "san-mono-companieshouse-data-verificator-5dc877b9b9"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"geo-checker-85ff87d7cd","namespace":"cloud"}, "workload": "geo-checker-85ff87d7cd"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"geo-checker-85ff87d7cd","namespace":"cloud"}, "workload": "geo-checker-85ff87d7cd"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"cert-manager-cainjector-586bbcb7c5","namespace":"ingress"}, "workload": "cert-manager-cainjector-586bbcb7c5"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"cert-manager-cainjector-586bbcb7c5","namespace":"ingress"}, "workload": "cert-manager-cainjector-586bbcb7c5"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648","namespace":"ingress"}, "workload": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-598485f648","namespace":"ingress"}, "workload": "aws-lb-controller-aws-load-balancer-controller-598485f648"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-pdfgen-b557dfc76","namespace":"ms"}, "workload": "san-mono-pdfgen-b557dfc76"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-pdfgen-b557dfc76","namespace":"ms"}, "workload": "san-mono-pdfgen-b557dfc76"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"oauth2-proxy-kubeview-646f99cc55","namespace":"cloud"}, "workload": "oauth2-proxy-kubeview-646f99cc55"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"oauth2-proxy-kubeview-646f99cc55","namespace":"cloud"}, "workload": "oauth2-proxy-kubeview-646f99cc55"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"coredns-7478dc474c","namespace":"kube-system"}, "workload": "coredns-7478dc474c"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"coredns-7478dc474c","namespace":"kube-system"}, "workload": "coredns-7478dc474c"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-694c5d7465","namespace":"ms"}, "workload": "san-mono-mock-auth-provider-694c5d7465"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-694c5d7465","namespace":"ms"}, "workload": "san-mono-mock-auth-provider-694c5d7465"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-equifax-5f55447457","namespace":"ms"}, "workload": "san-mono-mock-equifax-5f55447457"} 2024-02-01T12:17:28Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-equifax-5f55447457","namespace":"ms"}, "workload": "san-mono-mock-equifax-5f55447457"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-comms-editemplate-896d4dfcc","namespace":"ms"}, "workload": "san-comms-editemplate-896d4dfcc"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-comms-editemplate-896d4dfcc","namespace":"ms"}, "workload": "san-comms-editemplate-896d4dfcc"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-identity-enrichment-576d748794","namespace":"ms"}, "workload": "san-mono-identity-enrichment-576d748794"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-identity-enrichment-576d748794","namespace":"ms"}, "workload": "san-mono-identity-enrichment-576d748794"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-evaluation-engine-788789d479","namespace":"ms"}, "workload": "san-mono-evaluation-engine-788789d479"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-evaluation-engine-788789d479","namespace":"ms"}, "workload": "san-mono-evaluation-engine-788789d479"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"cert-manager-d7d6564bf","namespace":"ingress"}, "workload": "cert-manager-d7d6564bf"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"cert-manager-d7d6564bf","namespace":"ingress"}, "workload": "cert-manager-d7d6564bf"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"appian-operator-controllers-566f6d5869","namespace":"appian-operator"}, "workload": "appian-operator-controllers-566f6d5869"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"appian-operator-controllers-566f6d5869","namespace":"appian-operator"}, "workload": "appian-operator-controllers-566f6d5869"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"prometheus-adapter-9c44d9d96","namespace":"cloud"}, "workload": "prometheus-adapter-9c44d9d96"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"prometheus-adapter-9c44d9d96","namespace":"cloud"}, "workload": "prometheus-adapter-9c44d9d96"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"prometheus-operator-kube-p-operator-5bc595f697","namespace":"cloud"}, "workload": "prometheus-operator-kube-p-operator-5bc595f697"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"prometheus-operator-kube-p-operator-5bc595f697","namespace":"cloud"}, "workload": "prometheus-operator-kube-p-operator-5bc595f697"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"service-s3browser-5dcc6495f9","namespace":"cloud"}, "workload": "service-s3browser-5dcc6495f9"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"service-s3browser-5dcc6495f9","namespace":"cloud"}, "workload": "service-s3browser-5dcc6495f9"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"dev-cloudbeaver-oauth2-proxy-88c955589","namespace":"cloud"}, "workload": "dev-cloudbeaver-oauth2-proxy-88c955589"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"dev-cloudbeaver-oauth2-proxy-88c955589","namespace":"cloud"}, "workload": "dev-cloudbeaver-oauth2-proxy-88c955589"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-sms-service-57997dc44d","namespace":"ms"}, "workload": "san-mono-mock-sms-service-57997dc44d"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-sms-service-57997dc44d","namespace":"ms"}, "workload": "san-mono-mock-sms-service-57997dc44d"} 2024-02-01T12:17:29Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mi-report-email-6dddc9c89f","namespace":"ms"}, "workload": "san-mono-mi-report-email-6dddc9c89f"} 2024-02-01T12:17:29Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"opentelemetry-operator-leader-election","namespace":"opentelemetry-operator-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "customresourcedefinition", "controllerGroup": "apiextensions.k8s.io", "controllerKind": "CustomResourceDefinition", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "configmap", "controllerGroup": "", "controllerKind": "ConfigMap", "worker count": 1} 2024-02-01T12:17:25Z INFO Starting workers {"controller": "cronjob", "controllerGroup": "batch", "controllerKind": "CronJob", "worker count": 1} 2024-02-01T12:17:26Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-service-manager-execution02","namespace":"appian-site"}} 2024-02-01T12:17:28Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-document-tools","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:29Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"eks:pod-identity-mutating-webhook"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:29Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "ReplicaSet", "name": {"name":"coredns-7478dc474c","namespace":"kube-system"}} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-mi-report-email-6dddc9c89f","namespace":"ms"}, "workload": "san-mono-mi-report-email-6dddc9c89f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-documents-vault-converter-555f57769f","namespace":"ms"}, "workload": "san-mono-documents-vault-converter-555f57769f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"san-mono-documents-vault-converter-555f57769f","namespace":"ms"}, "workload": "san-mono-documents-vault-converter-555f57769f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"k8s-event-logger-8f8489b75","namespace":"cloud"}, "workload": "k8s-event-logger-8f8489b75"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"k8s-event-logger-8f8489b75","namespace":"cloud"}, "workload": "k8s-event-logger-8f8489b75"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"kube-web-view-bb9b68497","namespace":"cloud"}, "workload": "kube-web-view-bb9b68497"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"kube-web-view-bb9b68497","namespace":"cloud"}, "workload": "kube-web-view-bb9b68497"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"ingress-nginx-controller-d899bbd5","namespace":"ingress"}, "workload": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"ingress-nginx-controller-d899bbd5","namespace":"ingress"}, "workload": "ingress-nginx-controller-d899bbd5"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"metrics-server-df7b7cb8c","namespace":"kube-system"}, "workload": "metrics-server-df7b7cb8c"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport VulnerabilityReports or Secret Reports already exist for the workload {"kind": "ReplicaSet", "name": {"name":"metrics-server-df7b7cb8c","namespace":"kube-system"}, "workload": "metrics-server-df7b7cb8c"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-equifax-7c9bd56ccd","namespace":"ms"}, "workload": "san-mono-mock-equifax-7c9bd56ccd"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-equifax-7c9bd56ccd","namespace":"ms"}, "name": "san-mono-mock-equifax-7c9bd56ccd"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-hooyu-service-5df4449b98","namespace":"ms"}, "workload": "san-mono-mock-hooyu-service-5df4449b98"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-hooyu-service-5df4449b98","namespace":"ms"}, "name": "san-mono-mock-hooyu-service-5df4449b98"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"autoscaler-aws-cluster-autoscaler-85bfc4c7f6","namespace":"kube-system"}, "workload": "autoscaler-aws-cluster-autoscaler-85bfc4c7f6"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"autoscaler-aws-cluster-autoscaler-85bfc4c7f6","namespace":"kube-system"}, "name": "autoscaler-aws-cluster-autoscaler-85bfc4c7f6"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-document-tools-85b78f8b8f","namespace":"ms"}, "workload": "san-mono-document-tools-85b78f8b8f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-document-tools-85b78f8b8f","namespace":"ms"}, "name": "san-mono-document-tools-85b78f8b8f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-documents-vault-converter-975f9b456","namespace":"ms"}, "workload": "san-mono-documents-vault-converter-975f9b456"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-documents-vault-converter-975f9b456","namespace":"ms"}, "name": "san-mono-documents-vault-converter-975f9b456"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-78b589655b","namespace":"ms"}, "workload": "san-mono-mock-auth-provider-78b589655b"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-78b589655b","namespace":"ms"}, "name": "san-mono-mock-auth-provider-78b589655b"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-comms-comms-content-55c69bfb96","namespace":"ms"}, "workload": "san-comms-comms-content-55c69bfb96"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-comms-comms-content-55c69bfb96","namespace":"ms"}, "name": "san-comms-comms-content-55c69bfb96"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-portal-74979f85dc","namespace":"ms"}, "workload": "san-mono-policy-portal-74979f85dc"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-policy-portal-74979f85dc","namespace":"ms"}, "name": "san-mono-policy-portal-74979f85dc"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-6d46964986","namespace":"ms"}, "workload": "san-mono-telephony-connect-6d46964986"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-6d46964986","namespace":"ms"}, "name": "san-mono-telephony-connect-6d46964986"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-55bf7bfb88","namespace":"ms"}, "workload": "san-mono-mock-auth-provider-55bf7bfb88"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-mock-auth-provider-55bf7bfb88","namespace":"ms"}, "name": "san-mono-mock-auth-provider-55bf7bfb88"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-outbound-emails-doc-vault-6d4b5846b6","namespace":"ms"}, "workload": "san-mono-outbound-emails-doc-vault-6d4b5846b6"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-outbound-emails-doc-vault-6d4b5846b6","namespace":"ms"}, "name": "san-mono-outbound-emails-doc-vault-6d4b5846b6"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-simple-email-79694b8674","namespace":"ms"}, "workload": "san-mono-simple-email-79694b8674"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-simple-email-79694b8674","namespace":"ms"}, "name": "san-mono-simple-email-79694b8674"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-569f66dfb7","namespace":"ms"}, "workload": "san-mono-telephony-connect-569f66dfb7"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-569f66dfb7","namespace":"ms"}, "name": "san-mono-telephony-connect-569f66dfb7"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"ingress-nginx-controller-54c8749f4b","namespace":"ingress"}, "workload": "ingress-nginx-controller-54c8749f4b"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"ingress-nginx-controller-54c8749f4b","namespace":"ingress"}, "name": "ingress-nginx-controller-54c8749f4b"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"ebs-csi-controller-6d8dd44b57","namespace":"kube-system"}, "workload": "ebs-csi-controller-6d8dd44b57"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"ebs-csi-controller-6d8dd44b57","namespace":"kube-system"}, "name": "ebs-csi-controller-6d8dd44b57"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-docusign-7ff9f85cdc","namespace":"ms"}, "workload": "san-mono-docusign-7ff9f85cdc"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-docusign-7ff9f85cdc","namespace":"ms"}, "name": "san-mono-docusign-7ff9f85cdc"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-unclassified-doc-vault-57676b766f","namespace":"ms"}, "workload": "san-mono-unclassified-doc-vault-57676b766f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-unclassified-doc-vault-57676b766f","namespace":"ms"}, "name": "san-mono-unclassified-doc-vault-57676b766f"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-letters-honcho-7b964d7f84","namespace":"ms"}, "workload": "san-mono-letters-honcho-7b964d7f84"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-letters-honcho-7b964d7f84","namespace":"ms"}, "name": "san-mono-letters-honcho-7b964d7f84"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-f994f6b84","namespace":"ms"}, "workload": "san-mono-telephony-connect-f994f6b84"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-telephony-connect-f994f6b84","namespace":"ms"}, "name": "san-mono-telephony-connect-f994f6b84"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"san-mono-unclassified-doc-vault-7dd4946b7c","namespace":"ms"}, "workload": "san-mono-unclassified-doc-vault-7dd4946b7c"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Ignoring ReplicaSet with no active pods {"kind": "ReplicaSet", "name": {"name":"san-mono-unclassified-doc-vault-7dd4946b7c","namespace":"ms"}, "name": "san-mono-unclassified-doc-vault-7dd4946b7c"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "ReplicaSet", "name": {"name":"appian-operator-webhooks-6d5b59dcc6","namespace":"appian-operator"}, "workload": "appian-operator-webhooks-6d5b59dcc6"} 2024-02-01T12:17:30Z DEBUG reconciler.vulnerabilityreport Submitting a scan for the workload {"kind": "ReplicaSet", "name": {"name":"appian-operator-webhooks-6d5b59dcc6","namespace":"appian-operator"}, "workload": "appian-operator-webhooks-6d5b59dcc6"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"aws-lb-controller-aws-load-balancer-controller-leader-election-rolebinding","namespace":"ingress"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:31Z DEBUG resourcecontroller Checking whether configuration audit report exists {"kind": "CronJob", "name": {"name":"appian-core-db-cleanup","namespace":"cloud"}} 2024-02-01T12:17:31Z DEBUG resourcecontroller Configuration audit report exists {"kind": "CronJob", "name": {"name":"appian-core-db-cleanup","namespace":"cloud"}} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"geo-checker","namespace":"cloud"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"eks:addon-cluster-admin"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:31Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "workload": "trivy-operator-76df69bddf-n4qj2"} 2024-02-01T12:17:31Z DEBUG reconciler.vulnerabilityreport Ignoring managed pod {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "controllerKind": "ReplicaSet", "controllerName": "trivy-operator-76df69bddf"} 2024-02-01T12:17:31Z DEBUG resourcecontroller Ignoring managed pod {"kind": "Pod", "name": {"name":"trivy-operator-76df69bddf-n4qj2","namespace":"trivy-system"}, "controllerKind": "ReplicaSet", "controllerName": "trivy-operator-76df69bddf"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"ebs-csi-leases-rolebinding","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"kube-root-ca.crt","namespace":"tc-system"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:31Z DEBUG reconciler.vulnerabilityreport Creating scan job for the workload {"kind": "StatefulSet", "name": "san-kpmg-dev-service-manager-notifications-email", "namespace": "appian-site", "podSpecHash": "6589fc8fb6"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"eks:cloudwatch-agent-role-binding"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:31Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"appians.crd.k8s.appian.com"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:32Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"eks:network-policy-controller","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:32Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-email-honcho-db","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:32Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"system:controller:pvc-protection-controller"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:32Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"l2advertisements.metallb.io"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:32Z DEBUG reconciler.vulnerabilityreport Checking scan jobs limit {"pre scan job processing for workload:": "appian-operator-webhooks-6d5b59dcc6", "count": 0, "limit": 2} 2024-02-01T12:17:32Z DEBUG reconciler.vulnerabilityreport Getting workload from cache {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-zookeeper","namespace":"appian-site"}, "workload": "san-kpmg-dev-zookeeper"} 2024-02-01T12:17:32Z DEBUG reconciler.vulnerabilityreport Submitting a scan for the workload {"kind": "StatefulSet", "name": {"name":"san-kpmg-dev-zookeeper","namespace":"appian-site"}, "workload": "san-kpmg-dev-zookeeper"} 2024-02-01T12:17:33Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"appian-operator-controllers-leader-election","namespace":"appian-operator"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:33Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-templ8r","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:33Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"prometheus-operator-kube-p-operator"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:33Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"alertmanagerconfigs.monitoring.coreos.com"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"cert-manager-cainjector:leaderelection","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-unclassified-doc-vault","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"system:controller:attachdetach-controller"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"instrumentations.opentelemetry.io"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"eks:fargate-manager","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"my-collector-collector","namespace":"opentelemetry-operator-system"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"system:controller:service-account-controller"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:34Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"prometheusagents.monitoring.coreos.com"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:35Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"eks:node-manager","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:35Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-outbound-letters-doc-vault","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:35Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"eks:service-operations"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:35Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"sbomreports.aquasecurity.github.io"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:37Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"eks:k8s-metrics","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:37Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"backups.postgresql.cnpg.io"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:37Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"ingress-nginx"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:37Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"aws-logging","namespace":"aws-observability"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:40Z DEBUG resourcecontroller resource not supported {"kind": "CustomResourceDefinition", "name": {"name":"clusterinfraassessmentreports.aquasecurity.github.io"}, "kind": "&TypeMeta{Kind:CustomResourceDefinition,APIVersion:apiextensions.k8s.io/v1,}"} 2024-02-01T12:17:40Z DEBUG resourcecontroller resource not supported {"kind": "ClusterRoleBinding", "name": {"name":"system:controller:persistent-volume-binder"}, "kind": "&TypeMeta{Kind:ClusterRoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:40Z DEBUG resourcecontroller resource not supported {"kind": "RoleBinding", "name": {"name":"metrics-server-auth-reader","namespace":"kube-system"}, "kind": "&TypeMeta{Kind:RoleBinding,APIVersion:rbac.authorization.k8s.io/v1,}"} 2024-02-01T12:17:41Z DEBUG resourcecontroller resource not supported {"kind": "ConfigMap", "name": {"name":"mono-mock-equifax","namespace":"ms"}, "kind": "&TypeMeta{Kind:ConfigMap,APIVersion:v1,}"} 2024-02-01T12:17:41Z DEBUG reconciler.vulnerabilityreport Creating scan job for the workload {"kind": "ReplicaSet", "name": "appian-operator-webhooks-6d5b59dcc6", "namespace": "appian-operator", "podSpecHash": "564d68bc58"} I0201 12:19:31.230069 1 request.go:697] Waited for 5.605048248s due to client-side throttling, not priority and fairness, request: POST:https://172.20.0.1:443/apis/batch/v1/namespaces/trivy-system/jobs

chen-keinan commented 7 months ago

@prabhapa trivy-operator running and after a while it is crashing ?

are you getting any report generated ?

prabhapa commented 6 months ago

@chen-keinan , no reports are being generated . its keep on crashing

prabhapa commented 6 months ago

@chen-keinan , liveness/readiness probes failing. ``` Events: Type Reason Age From Message


Normal LoggingEnabled 58m fargate-scheduler Successfully enabled logging for pod Normal Scheduled 58m fargate-scheduler Successfully assigned trivy-system/trivy-operator-76df69bddf-n4qj2 to fargate-ip-10-149-10-146.eu-west-1.compute.internal Normal Pulling 58m kubelet Pulling image "ghcr.io/aquasecurity/trivy-operator:0.18.3" Normal Pulled 58m kubelet Successfully pulled image "ghcr.io/aquasecurity/trivy-operator:0.18.3" in 4.658s (4.658s including waiting) Normal Created 57m (x2 over 57m) kubelet Created container trivy-operator Normal Started 57m (x2 over 57m) kubelet Started container trivy-operator Normal Pulled 57m kubelet Container image "ghcr.io/aquasecurity/trivy-operator:0.18.3" already present on machine Warning Unhealthy 56m kubelet Liveness probe failed: Get "http://10.149.10.146:9090/healthz/": dial tcp 10.149.10.146:9090: connect: connection refused Warning Unhealthy 56m (x9 over 57m) kubelet Readiness probe failed: Get "http://10.149.10.146:9090/readyz/": context deadline exceeded (Client.Timeout exceeded while awaiting headers) Warning BackOff 7m56s (x99 over 44m) kubelet Back-off restarting failed container trivy-operator in pod trivy-operator-76df69bddf-n4qj2_trivy-system(fceb00a3-b995-4c64-90db-232ea4c68375) Warning Unhealthy 3m4s (x125 over 57m) kubelet Liveness probe failed: Get "http://10.149.10.146:9090/healthz/": context deadline exceeded (Client.Timeout exceeded while awaiting headers)

prabhapa commented 6 months ago

@chen-keinan @AnaisUrlichs , Any resolutions / recommendations why its happening in EKS cluster? my primary aim is not the vulnerability scan of the workloads but CIS and other benchmarks, config audits etc etc. Even I cant skip the vulnerability scan . Te parameter(operator.vulnerabilityScannerEnabled: false) does not work as per my observation.

chen-keinan commented 6 months ago

@chen-keinan @AnaisUrlichs , Any resolutions / recommendations why its happening in EKS cluster? my primary aim is not the vulnerability scan of the workloads but CIS and other benchmarks, config audits etc etc. Even I cant skip the vulnerability scan . Te parameter(operator.vulnerabilityScannerEnabled: false) does not work as per my observation.

@prabhapa not sure if it related to fargate Node never tested it on it. do you have the ability to spin up a test env. non fargate Node just to isolate the issue ?

prabhapa commented 6 months ago

Hi @chen-keinan , I wll try that .give me some time pls.