Fix some misspellings within Kuryr-Kubernetes
This commit fixes a few typos that were around Kuryr-Kubernetes code and attempts to keep a saner codebase avoiding one-liner committers. Change-Id: I57380d69570a74abd167ef02e6a346885bda8d5d
This commit is contained in:
parent
cf96e54bf7
commit
90ff84013d
@ -16,7 +16,7 @@ Bugs should be filed on Launchpad, not GitHub:
|
||||
|
||||
https://bugs.launchpad.net/kuryr-kubernetes
|
||||
|
||||
If you want to have your code checked for pep8 automatically before commiting
|
||||
If you want to have your code checked for pep8 automatically before committing
|
||||
changes, you can just do::
|
||||
|
||||
pip install pre-commit
|
||||
|
@ -167,7 +167,7 @@ KuryrPorts objects that were annotated with `deleting` label at the
|
||||
(or any other SDN) associated resources.
|
||||
|
||||
As for the Ports Pools, right now they reside on memory on the
|
||||
Kuryr-controller and need to be recovered everytime the controller gets
|
||||
Kuryr-controller and need to be recovered every time the controller gets
|
||||
restarted. To perform this recovery we are relying on Neutron Port
|
||||
device-owner information which may not be completely waterproof in all
|
||||
situations (e.g., if there is another entity using the same device
|
||||
|
@ -108,7 +108,7 @@ This should generate 5 files in your ``<output_dir>``:
|
||||
kuryr-cni daemonset mounts /var/run, due to necessity of accessing to several sub directories
|
||||
like openvswitch and auxiliary directory for vhostuser configuration and socket files. Also when
|
||||
neutron-openvswitch-agent works with datapath_type = netdev configuration option, kuryr-kubernetes
|
||||
has to move vhostuser socket to auxilary directory, that auxiliary directory should be on the same
|
||||
has to move vhostuser socket to auxiliary directory, that auxiliary directory should be on the same
|
||||
mount point, otherwise connection of this socket will be refused.
|
||||
In case when Open vSwitch keeps vhostuser socket files not in /var/run/openvswitch, openvswitch
|
||||
mount point in cni_ds.yaml and [vhostuser] section in config_map.yml should be changed properly.
|
||||
|
@ -57,9 +57,9 @@ Feel free to edit it if you'd like, but it should work as-is.
|
||||
|
||||
Note that due to OVN compiling OVS from source at
|
||||
/usr/local/var/run/openvswitch we need to state at the local.conf that the path
|
||||
is different from the default one (i.e., /var/run/openvswtich).
|
||||
is different from the default one (i.e., /var/run/openvswitch).
|
||||
|
||||
Optionally, the ports pool funcionality can be enabled by following:
|
||||
Optionally, the ports pool functionality can be enabled by following:
|
||||
:doc:`./ports-pool`
|
||||
|
||||
5. Run DevStack.
|
||||
|
@ -757,7 +757,7 @@ class NetworkPolicyDriver(DriverBase):
|
||||
:param policy: dict containing Kubernetes NP object
|
||||
:param selector: (optional) specifc pod selector
|
||||
:returns: list of Pods objects affected by the policy or the selector
|
||||
if it is pased
|
||||
if it is passed
|
||||
"""
|
||||
raise NotImplementedError()
|
||||
|
||||
|
@ -247,12 +247,12 @@ class NetworkPolicyDriver(base.NetworkPolicyDriver):
|
||||
elif namespace_selector:
|
||||
selectors = True
|
||||
if pod_selector:
|
||||
# allow matching pods on maching namespaces
|
||||
# allow matching pods on matching namespaces
|
||||
allowed_cidrs.extend(self._get_pods_ips(
|
||||
pod_selector,
|
||||
namespace_selector=namespace_selector))
|
||||
else:
|
||||
# allow from/to all on the maching namespaces
|
||||
# allow from/to all on the matching namespaces
|
||||
allowed_cidrs.extend(self._get_namespaces_cidr(
|
||||
namespace_selector))
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user