palantir-deploy-integration

Featured

Deploy Palantir Foundry integrations to cloud platforms with secrets management. Use when deploying Foundry-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy palantir", "foundry deploy", "palantir production deploy", "foundry Cloud Run".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Palantir Deploy Integration ## Overview Deploy Foundry-integrated applications to cloud platforms (GCP Cloud Run, AWS Lambda, Docker) with proper secrets management and health checks. ## Prerequisites - Passing CI tests: `palantir-ci-integration` - Production OAuth2 credentials from Developer Console - Cloud platform CLI configured (gcloud, aws, etc.) ## Instructions ### Step 1: Dockerfile ```dockerfile FROM python:3.11-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY src/ ./src/ EXPOSE 8080 CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8080"] ``` ### Step 2: Deploy to Google Cloud Run ```bash set -euo pipefail PROJECT_ID=$(gcloud config get-value project) SERVICE_NAME="foundry-integration" REGION="us-central1" # Build and push container gcloud builds submit --tag "gcr.io/$PROJECT_ID/$SERVICE_NAME" # Deploy with secrets from Secret Manager gcloud run deploy "$SERVICE_NAME" \ --image "gcr.io/$PROJECT_ID/$SERVICE_NAME" \ --region "$REGION" \ --set-secrets "FOUNDRY_HOSTNAME=foundry-hostname:latest" \ --set-secrets "FOUNDRY_CLIENT_ID=foundry-client-id:latest" \ --set-secrets "FOUNDRY_CLIENT_SECRET=foundry-client-secret:latest" \ --min-instances 1 \ --max-instances 10 \ --timeout 60 \ --allow-unauthenticated ``` ### Step 3: Health Check Endpoint ```python # src/main.py from fastapi import FastAPI import foundry, os app = FastAPI() @app.get("/health") async def health(): try: ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

palantir-prod-checklist

Execute Palantir Foundry production deployment checklist and rollback procedures. Use when deploying Foundry integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "palantir production", "deploy foundry", "palantir go-live", "foundry launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-ci-integration

Configure CI/CD pipelines for Palantir Foundry integrations with GitHub Actions. Use when setting up automated testing, running transforms validation, or integrating Foundry SDK tests into your build process. Trigger with phrases like "palantir CI", "foundry GitHub Actions", "palantir automated tests", "CI foundry".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-observability

Set up observability for Palantir Foundry integrations with metrics, logging, and alerts. Use when implementing monitoring for Foundry API calls, setting up dashboards, or configuring alerting for Foundry integration health. Trigger with phrases like "palantir monitoring", "foundry metrics", "palantir observability", "monitor foundry", "foundry alerts".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-security-basics

Apply Palantir Foundry security best practices for credentials, scopes, and access control. Use when securing API tokens, implementing least privilege access, or auditing Foundry security configuration. Trigger with phrases like "palantir security", "foundry secrets", "secure palantir", "palantir API key security", "foundry scopes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-install-auth

Install and configure Palantir Foundry SDK authentication with OAuth2 or token auth. Use when setting up a new Foundry integration, configuring API credentials, or initializing the foundry-platform-sdk in your project. Trigger with phrases like "install palantir", "setup palantir", "palantir auth", "configure palantir API key", "foundry SDK setup".

2,266 Updated today
jeremylongshore