This file contains hidden or 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
    
  
  
    
  | # apiVersion: networking.k8s.io/v1beta1 # for k8s < v1.19 | |
| apiVersion: networking.k8s.io/v1 | |
| kind: Ingress | |
| metadata: | |
| name: web-ingress | |
| namespace: linkerd-viz | |
| annotations: | |
| nginx.ingress.kubernetes.io/upstream-vhost: $service_name.$namespace.svc.cluster.local:8084 | |
| nginx.ingress.kubernetes.io/configuration-snippet: | | |
| proxy_set_header Origin ""; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class Node(): | |
| def __init__(self,data : str ) -> None: | |
| self.data = data | |
| self.next = None | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class Node(): | |
| def __init__(self, data : str): | |
| super().__init__() | |
| self.data = data | |
| self.next = None | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class circular_list(): | |
| def __init__(self): | |
| self.head :Node = None | |
| def append(self,data :str ): | |
| new_nodo = Node(data) | |
| temp_node = self.head | |
| if temp_node == None: | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class linked_list(): | |
| def __init__(self): | |
| #Head is a fist node at list | |
| self.head =None | |
| def append(self,data:str): | |
| new_nodo = nodo(data) | |
| if self.head == None: |