-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5038cea
commit d8e8406
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Installing OKDerator Catalog | ||
=== | ||
|
||
> [!CAUTION] | ||
> OKDerator is a WIP project that is in active development. Cluster breaking changes could be introduced. | ||
> Use with caution! | ||
> [!IMPORTANT] | ||
> Keep up to date with changes and development by joining the OKD Working Group community | ||
# Quick Start | ||
`oc apply -f https://raw.githubusercontent.com/okd-project/okderators-catalog-index/main/install/okderators.catalogsource.yml` | ||
Must be authenticated as a `cluster-admin` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: CatalogSource | ||
metadata: | ||
name: okderators | ||
namespace: openshift-marketplace | ||
spec: | ||
displayName: OKDerators | ||
image: 'quay.io/okderators/catalog-index:latest' | ||
publisher: OKD Working Group | ||
icon: | ||
base64data: '' # Todo | ||
mediatype: '' # Todo | ||
updateStrategy: | ||
registryPoll: | ||
interval: 10m | ||
priority: -100 # Prefer default/manual CatalogSources | ||
sourceType: grpc | ||
grpcPodConfig: | ||
nodeSelector: | ||
kubernetes.io/os: linux | ||
node-role.kubernetes.io/master: '' | ||
priorityClassName: system-cluster-critical | ||
securityContextConfig: restricted | ||
tolerations: | ||
- effect: NoSchedule | ||
key: node-role.kubernetes.io/master | ||
operator: Exists | ||
- effect: NoExecute | ||
key: node.kubernetes.io/unreachable | ||
operator: Exists | ||
tolerationSeconds: 120 | ||
- effect: NoExecute | ||
key: node.kubernetes.io/not-ready | ||
operator: Exists | ||
tolerationSeconds: 120 |