33 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: libretranslate
 | 
						|
spec:
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: libretranslate
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        app: libretranslate
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: libretranslate
 | 
						|
        image: libretranslate/libretranslate:latest
 | 
						|
        resources:
 | 
						|
          limits:
 | 
						|
            memory: "1Gi"
 | 
						|
            cpu: "500m"
 | 
						|
        ports:
 | 
						|
        - containerPort: 5000
 | 
						|
        env:
 | 
						|
        - name: "LT_LOAD_ONLY"
 | 
						|
          valueFrom:
 | 
						|
            configMapKeyRef:
 | 
						|
              name: libretranslate-config
 | 
						|
              key: langs
 | 
						|
        - name: "TRANSLATE_KEY"
 | 
						|
          valueFrom:
 | 
						|
            configMapKeyRef:
 | 
						|
              name: libretranslate-config
 | 
						|
              key: ltapikey
 |