You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. dropdown:: Migrate from legacy NodePort service
953
-
954
-
955
-
If you are upgrading from an early 0.8.0 nightly with a previously deployed NodePort service (named ``${RELEASE_NAME}-ingress-controller-np``), an error will be raised to ask for migration. In addition, a new service will be created to expose the API server (using ``LoadBalancer`` service type by default). You can choose any of the following options to proceed the upgrade process based on your needs:
956
-
957
-
- Keep the legacy NodePort service and gradually migrate to the new LoadBalancer service:
958
-
959
-
Add ``--set ingress.nodePortEnabled=true`` to your ``helm upgrade`` command to keep the legacy NodePort service. Existing clients can continue to use the previous NodePort service. After all clients have been migrated to the new service, you can disable the legacy NodePort service by adding ``--set ingress.nodePortEnabled=false`` to the ``helm upgrade`` command.
960
-
961
-
- Disable the legacy NodePort service:
962
-
963
-
Add ``--set ingress.nodePortEnabled=false`` to your ``helm upgrade`` command to disable the legacy NodePort service. Clients will need to use the new service to connect to the API server.
964
-
965
-
.. note::
966
-
967
-
Make sure there is no clients using the NodePort service before disabling it.
968
-
969
-
.. note::
970
-
971
-
Refer to :ref:`sky-get-api-server-url` for how to customize and/or connect to the new service.
Whether to enable an additional NodePort service for the ingress controller. Deprecated: use ``ingress-nginx.controller.service.type=NodePort`` instead.
1263
-
1264
-
Default: ``null``
1265
-
1266
-
.. code-block:: yaml
1267
-
1268
-
ingress:
1269
-
nodePortEnabled: false
1270
-
1271
-
.. _helm-values-ingress-httpNodePort:
1272
-
1273
-
``ingress.httpNodePort``
1274
-
^^^^^^^^^^^^^^^^^^^^^^^^
1275
-
1276
-
Specific nodePort to use for HTTP traffic. Deprecated: use ``ingress-nginx.controller.service.nodePorts.http`` instead.
1277
-
1278
-
Default: ``30050``
1279
-
1280
-
.. code-block:: yaml
1281
-
1282
-
ingress:
1283
-
httpNodePort: 30050
1284
-
1285
-
.. _helm-values-ingress-httpsNodePort:
1286
-
1287
-
``ingress.httpsNodePort``
1288
-
^^^^^^^^^^^^^^^^^^^^^^^^^
1289
-
1290
-
Specific nodePort to use for HTTPS traffic. Deprecated: use ``ingress-nginx.controller.service.nodePorts.https`` instead.
0 commit comments