Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ FROM python:3.9.18-alpine3.18
WORKDIR /app

# Copy the necessary files
COPY src/ /app/src/
COPY src/ /app/
COPY requirements.txt /app/

# Install required Python packages
RUN pip install --no-cache-dir -r requirements.txt

# Install Kopf
RUN pip install kopf
RUN pip install --no-cache-dir -r /app/requirements.txt

# Create a non-root user
RUN adduser -D operator-usr
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ helm repo add phase https://helm.phase.dev && helm repo update
Install the Phase Secrets Operator:

```fish
helm install phase-secrets-operator phase/phase-kubernetes-operator --set image.tag=v0.1.0
helm install phase-secrets-operator phase/phase-kubernetes-operator --set image.tag=v1.0.1
```

It's best practice to specify the version in production environments to avoid
Expand Down
1 change: 0 additions & 1 deletion cr-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ metadata:
spec:
phaseApp: "your-phase-application" # The name of your Phase application
phaseAppEnv: "production" # OPTIONAL The Phase application environment to fetch secrets from
phaseAppEnvTag: "certs" # OPTIONAL Tag for filtering secrets in the specified Phase app environment.
phaseHost: "https://console.phase.dev" # OPTIONAL - URL of a Phase Console instance
authentication:
serviceToken:
Expand Down
4 changes: 2 additions & 2 deletions phase-kubernetes-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ description: A Helm chart for deploying the Phase Kubernetes Operator
type: application

# Version of the chart
version: 1.0.0
version: 1.0.1

# Version of the application (operator) that is being deployed
appVersion: "1.0.0"
appVersion: "1.0.1"

# Keywords, maintainers, and source URLs can also be added here
keywords:
Expand Down
1 change: 0 additions & 1 deletion src/utils/keyring.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
import sys
import getpass
import keyring
from utils.misc import get_default_user_id

def get_credentials():
Expand Down