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
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,11 @@ Session.vim
# hack/generate-helm.sh copies config/charts/ to charts/ for helm package.
# Ignore that build output; config/charts/ (the source) is tracked.
/charts/
.tmp/
.tmp/

# Go binary
/operator
/token-exec-plugin

# kodata latest (generated locally by fetcher)
cmd/operator/kodata/*/latest/
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,24 @@ Details:
- [Serving Configuration](https://knative.dev/docs/install/operator/configuring-serving-cr/)
- [Eventing Configuration](https://knative.dev/docs/install/operator/configuring-eventing-cr/)
- [Upgrade](docs/upgrade.md)
- [Multi-cluster deployment](docs/multicluster.md)
- [Development](docs/development.md)
- [Multi-cluster E2E testing](docs/development/e2e-multicluster.md)
- [Release](docs/release.md)

For documentation on using Knative Operator, see the
[Knative operator section](https://knative.dev/docs/install/operator/knative-with-operators/) of the
[Knative documentation site](https://www.knative.dev/docs).

## Operator CLI flags

Operator-specific CLI flags (set on the operator Deployment via `args:`):

| Flag | Default | Description |
|------|---------|-------------|
| `--clusterprofile-provider-file` | `""` | Path to the JSON config file describing Cluster Inventory API access providers. Required when any CR sets `spec.clusterProfileRef`. See [docs/multicluster.md](docs/multicluster.md). |
| `--remote-deployments-poll-interval` | `10s` | Requeue interval used while polling spoke deployment readiness. Raise for large fleets (`30s` for 10-100 spokes, `60s` for >100). Values below `1s` fall back to the default with a WARNING log entry. |

If you are interested in contributing, see [CONTRIBUTING.md](./CONTRIBUTING.md)
and [DEVELOPMENT.md](./DEVELOPMENT.md). For a list of help wanted issues across
Knative, take a look at [CLOTRIBUTOR](https://clotributor.dev/search?project=knative&page=1).
36 changes: 18 additions & 18 deletions cmd/operator/kodata/ingress/1.20/istio/net-istio.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions cmd/operator/kodata/ingress/1.21/istio/net-istio.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions cmd/operator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ limitations under the License.
package main

import (
_ "knative.dev/operator/pkg/reconciler/common" // registers flags
"knative.dev/operator/pkg/reconciler/knativeeventing"
"knative.dev/operator/pkg/reconciler/knativeserving"
kubefilteredfactory "knative.dev/pkg/client/injection/kube/informers/factory/filtered"
Expand Down
Loading
Loading