Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@
"filename": "infra/feast-operator/api/v1/featurestore_types.go",
"hashed_secret": "44e17306b837162269a410204daaa5ecee4ec22c",
"is_verified": false,
"line_number": 877
"line_number": 879
}
],
"infra/feast-operator/api/v1/zz_generated.deepcopy.go": [
Expand Down Expand Up @@ -1122,7 +1122,7 @@
"filename": "infra/feast-operator/internal/controller/featurestore_controller_oidc_auth_test.go",
"hashed_secret": "a1f14fc6f33ba39a8b6d006fefa6fe0fe8d60ae2",
"is_verified": false,
"line_number": 447
"line_number": 450
}
],
"infra/feast-operator/internal/controller/featurestore_controller_test_utils_test.go": [
Expand Down Expand Up @@ -1539,5 +1539,5 @@
}
]
},
"generated_at": "2026-04-30T13:56:37Z"
"generated_at": "2026-04-30T20:52:53Z"
}
2 changes: 2 additions & 0 deletions infra/feast-operator/api/v1/featurestore_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const (
ClientFailedReason = "ClientDeploymentFailed"
CronJobFailedReason = "CronJobDeploymentFailed"
KubernetesAuthzFailedReason = "KubernetesAuthorizationDeploymentFailed"
OidcAuthzFailedReason = "OidcAuthorizationDeploymentFailed"

// Feast condition messages:
ReadyMessage = "FeatureStore installation complete"
Expand All @@ -62,6 +63,7 @@ const (
ClientReadyMessage = "Client installation complete"
CronJobReadyMessage = "CronJob installation complete"
KubernetesAuthzReadyMessage = "Kubernetes authorization installation complete"
OidcAuthzReadyMessage = "OIDC authorization installation complete"
DeploymentNotAvailableMessage = "Deployment is not available"

// entity_key_serialization_version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
}
]
capabilities: Basic Install
createdAt: "2026-04-08T14:26:31Z"
createdAt: "2026-04-30T09:51:36Z"
operators.operatorframework.io/builder: operator-sdk-v1.38.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
name: feast-operator.v0.62.0
Expand Down Expand Up @@ -79,9 +79,12 @@ spec:
clusterPermissions:
- rules:
- apiGroups:
- apps
- ""
resources:
- deployments
- configmaps
- persistentvolumeclaims
- serviceaccounts
- services
verbs:
- create
- delete
Expand All @@ -90,65 +93,62 @@ spec:
- update
- watch
- apiGroups:
- authentication.k8s.io
- ""
resources:
- tokenreviews
- namespaces
- pods
- secrets
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- pods/exec
verbs:
- create
- apiGroups:
- autoscaling
- apps
resources:
- horizontalpodautoscalers
- deployments
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- batch
- authentication.k8s.io
resources:
- cronjobs
- tokenreviews
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
- autoscaling
resources:
- configmaps
- persistentvolumeclaims
- serviceaccounts
- services
- horizontalpodautoscalers
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
- batch
resources:
- namespaces
- pods
- secrets
- cronjobs
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- pods/exec
verbs:
- create
- apiGroups:
- feast.dev
resources:
Expand Down Expand Up @@ -266,12 +266,12 @@ spec:
command:
- /manager
env:
- name: GOMEMLIMIT
value: "230MiB"
- name: RELATED_IMAGE_FEATURE_SERVER
value: quay.io/feastdev/feature-server:0.62.0
- name: RELATED_IMAGE_CRON_JOB
value: quay.io/openshift/origin-cli:4.17
- name: GOMEMLIMIT
value: 230MiB
- name: OIDC_ISSUER_URL
image: quay.io/feastdev/feast-operator:0.62.0
livenessProbe:
Expand Down
Loading
Loading