|
9 | 9 | repository: opcrouter/service |
10 | 10 | pullPolicy: IfNotPresent |
11 | 11 | # Overrides the image tag whose default is the chart appVersion. |
12 | | - tag: 4.27 |
| 12 | + tag: |
13 | 13 |
|
14 | 14 | imagePullSecrets: [] |
15 | 15 | nameOverride: "" |
@@ -83,13 +83,40 @@ service: |
83 | 83 | # When list left blank, NodePort will chose a random port itself. |
84 | 84 | # nodePort need to be in range 30000 to 32768. |
85 | 85 | nodePort: |
86 | | - # External IPs. The serice will be reachable under these IPs from outside the cluser, |
| 86 | + # External IPs. The service will be reachable under these IPs from outside the cluser, |
87 | 87 | # when traffic ingresses into the cluster with the IPs as destination. |
88 | 88 | externalIPs: [] |
89 | 89 | # LoadBalancer IP. Only used when LoadBalancer. |
90 | 90 | # Used by some cloud providers to add external load balancers. |
91 | 91 | # If not supported, it is just ignored. |
92 | 92 | loadBalancerIP: |
| 93 | + # Annotations for service. |
| 94 | + # Some cloud providers may need special annotations for their loadbalancers to work. |
| 95 | + annotations: {} |
| 96 | + |
| 97 | +license: |
| 98 | + # Storage capacity of license volume claim. |
| 99 | + capacity: "100M" |
| 100 | + # Storage class name of license volume claim. |
| 101 | + # If left as empty, will use default storage class, when availible. |
| 102 | + storageClassName: |
| 103 | + # If true, the license volume claim and volume will persist even after uninstalling the chart. |
| 104 | + keepAfterUninstall: false |
| 105 | + storageVolume: |
| 106 | + # If true, a new persistant volume is created for the license using the settings provided here. |
| 107 | + # When false, dynamic provisioning might still create a volume using the setting specified by the storageClass. |
| 108 | + createVolume: false |
| 109 | + # Persistant volume retain policy of license volume. |
| 110 | + reclaimPolicy: Retain |
| 111 | + # Volume type of license volume. |
| 112 | + volumeType: local |
| 113 | + # Volume type specific settings. |
| 114 | + volumeTypeOptions: |
| 115 | + path: /license |
| 116 | + # Mount options of license volume. |
| 117 | + mountOptions: [] |
| 118 | + # Node affinity settings of license volume. |
| 119 | + nodeAffinity: {} |
93 | 120 |
|
94 | 121 | ingress: |
95 | 122 | enabled: false |
|
0 commit comments