-
Notifications
You must be signed in to change notification settings - Fork 590
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
Showing
10 changed files
with
4,621 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
operators/awx-operator/2.19.0/manifests/awx-operator-awx-manager-config_v1_configmap.yaml
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,26 @@ | ||
apiVersion: v1 | ||
data: | ||
controller_manager_config.yaml: | | ||
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 | ||
kind: ControllerManagerConfig | ||
health: | ||
healthProbeBindAddress: :6789 | ||
metrics: | ||
bindAddress: 127.0.0.1:8080 | ||
leaderElection: | ||
leaderElect: true | ||
resourceName: 811c9dc5.ansible.com | ||
# leaderElectionReleaseOnCancel defines if the leader should step down volume | ||
# when the Manager ends. This requires the binary to immediately end when the | ||
# Manager is stopped, otherwise, this setting is unsafe. Setting this significantly | ||
# speeds up voluntary leader transitions as the new leader don't have to wait | ||
# LeaseDuration time first. | ||
# In the default scaffold provided, the program ends immediately after | ||
# the manager stops, so would be fine to enable this option. However, | ||
# if you are doing or is intended to do any operation such as perform cleanups | ||
# after the manager stops then its usage might be unsafe. | ||
# leaderElectionReleaseOnCancel: true | ||
kind: ConfigMap | ||
metadata: | ||
name: awx-operator-awx-manager-config |
17 changes: 17 additions & 0 deletions
17
...operator/2.19.0/manifests/awx-operator-controller-manager-metrics-service_v1_service.yaml
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,17 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
control-plane: controller-manager | ||
name: awx-operator-controller-manager-metrics-service | ||
spec: | ||
ports: | ||
- name: https | ||
port: 8443 | ||
protocol: TCP | ||
targetPort: https | ||
selector: | ||
control-plane: controller-manager | ||
status: | ||
loadBalancer: {} |
10 changes: 10 additions & 0 deletions
10
....19.0/manifests/awx-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml
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,10 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: awx-operator-metrics-reader | ||
rules: | ||
- nonResourceURLs: | ||
- /metrics | ||
verbs: | ||
- get |
Oops, something went wrong.