-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow null limits in resources (#182)
* Allow null limits in resources * Register entity if it doesn't exist * Fix error when enrollSecret contains invalid characters: netwgorkconfig_controller.go * Fix bugs * Fix traefikroute-admin.yaml * Fix automatically helm charts in the status: `pending-upgrade` * Update to fix bugs * Change logging * Support for identiy create registering users - FabricIdentity secret ref for in cluster CA * Add flag for maxReconciles
- Loading branch information
Showing
65 changed files
with
3,716 additions
and
642 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ nodes: | |
- containerPort: 30949 | ||
hostPort: 80 | ||
- containerPort: 30950 | ||
hostPort: 443 | ||
hostPort: 443 |
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
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 |
---|---|---|
|
@@ -18,9 +18,14 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
uses: helm/[email protected] | ||
with: | ||
cluster_name: kind | ||
node_image: kindest/node:v1.25.8 | ||
config: .github/kind-config.yaml | ||
|
||
- name: Install operator | ||
run: | | ||
run: | | ||
go install sigs.k8s.io/controller-tools/cmd/[email protected] | ||
make generate manifests install | ||
|
Oops, something went wrong.